jQuery(document).ready(function($){
			
		$('ul.superfish').superfish({ 
            delay:       150,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  true,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
		
	$('#animate a')
		.css( {backgroundPosition: "0px 0px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(-80px -190px)"}, {duration:700})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(-130px 0px)"}, {duration:700, complete:function(){
				$(this).css({backgroundPosition: "0px 0px"})
			}})
		})	
	$('#animate li li a')
		.css( {backgroundPosition: "-640px 0px"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0px 0px)"}, {duration:400})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(-640px 0px)"}, {duration:400, complete:function(){
				$(this).css({backgroundPosition: "-640px 0px"})
			}})
		})
	});