$(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 -97px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:'normal'})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0px -97px)"}, {duration:'normal', complete:function(){
				$(this).css({backgroundPosition: "0px -97px"})
			}})
	});
		
	$(".sf-menu li li a").mouseover( function() {
		$(this).animate({color: "#e7e7ca"}, {queue:false, duration:250 });
		}).mouseout( function() {
		$(this).animate({color: "#b2b2a0"}, { queue:false, duration:350});
	});
	$('.box-5 div.fc').hover(function(){$(this).animate({color:'#ff9aff'},'slow')},function(){$(this).animate({color:'#fdfbf7'},'slow')})
}); 
