$(document).ready(function() { 
	$('ul.sf-menu').superfish({ 
		delay:       500,                            // one second delay on mouseout 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		speed:       'slow',                          // faster animation speed 
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows 
	}); 
	
	$('.sf-menu>li:not(.active)')
		.css( {backgroundPosition: "0px -85px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:'fast'})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0px -85px)"}, {duration:'fast', complete:function(){
				$(this).css({backgroundPosition: "0px -85px"})
			}})
	});
		
	}); 
