$(document).ready(function() { 
	$('ul.menu').superfish({ 
		delay:       1000,                            // one second delay on mouseout 
		animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
		speed:       'normal',                          // faster animation speed 
		autoArrows:  false,                           // disable generation of arrow mark-up 
		dropShadows: false                            // disable drop shadows 
	}); 
	
	$('.button2').hover(function(){
			$(this).find('span').stop().animate({backgroundPosition:'-20 -105'},400, 'easeInQuad',function(){$(this).css({backgroundColor:'#f77b0c'})})
		}, function(){
			$(this).find('span').css({background:'url(images/menu_hover.png) -20px -105px no-repeat'})
			$(this).find('span').stop().animate({backgroundPosition:'-250 -250'},400, 'easeOutQuad')
		}
	)
}); 
