	$(document).ready(
		function(){
		/*  $('ID or class of the element containing the fading objects').innerfade({ */
			$('#portfolio').innerfade({
		/*  animationtype: Type of animation 'fade' or 'slide' (Default: 'fade'),  */
				animationtype: 'fade',
		/*  speed: Fadingspeed in milliseconds or keywords (e.g. 750, slow, normal or fast)(Default: 'normal'),  */
				speed: 2000,
		/*  timeout: Time between the fades in milliseconds (Default: '2000'),  */
				timeout: 6000,
		/*  type: Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'),  */
				type: 'sequence',
		/*  containerheight: Height of the containing element in any css-height-value (Default: 'auto')  */
				containerheight: 'auto'
		/*  runningclass: CSS-Class which the container get’s applied (Default: 'innerfade')  */
			});
		}
	);
