$(document).ready(function() { 
	$('ul.menu').superfish({ 
		delay:       600,                            // 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 
	}); 
		$(".button1").mouseover( function() {
		$(this).stop().animate({backgroundColor: "#ffffff"}, {duration:300 });
		}).mouseout( function() {
		$(this).stop().animate({backgroundColor: "#1B1B1B"}, {duration:300});
	});
		$(".button2").mouseover( function() {
		$(this).stop().animate({backgroundColor: "#963630"}, {duration:300 });
		}).mouseout( function() {
		$(this).stop().animate({backgroundColor: "#D64840"}, {duration:300});
	});
		$(".button3").mouseover( function() {
		$(this).stop().animate({backgroundColor: "#963630"}, {duration:300 });
		}).mouseout( function() {
		$(this).stop().animate({backgroundColor: "#3A3D3D"}, {duration:300});
	});

}); 
