$(document).ready(function() { 
	$('#main-bg-bot').addClass('main-bg-bot');
	$('ul.sf-menu').superfish({ 
		delay:       1,                            // one second delay on mouseout 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		speed:       1,                          // faster animation speed 
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows 
	});
	
	$('.sf-menu li').hover(
	function (){$(this).find(":first-child").addClass('hover');}, 
	function (){$(this).find(":first-child").removeClass('hover');}
	);
}); 


