$(document).ready(function() {
		
	$("#mainMenu > li").hover(
		function(){
			$(this).children("ul").css("min-width",$(this).width()+"px");
			$(this).children("ul").show();
		},
		function(){
			$(this).children("ul").hide();
		});
	$('#slides').innerfade({ 
		speed: 'slow', 
		timeout: 5000, 
		type: 'sequence'
		//containerheight: '210px' 
	}); 

});