// JavaScript Document
$(document).ready(function(){					   
 $('#slideshowmain').innerfade({ 		//animationtype: Type of animation 'fade' or 'slide' (Default: 'fade'),
		speed: 3000, 					//speed: Fadingspeed in milliseconds or keywords (slow, normal or fast)(Default: 'normal'), 
		timeout: 8000, 					//timeout: Time between the fades in milliseconds (Default: '2000'), 
		type: 'sequence',				//type: Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence'),  
		containerheight: '304px' 		//containerheight: Height of the containing element in any css-height-value (Default: 'auto')  
});						   
});
