	
$(document).ready(function(){
		
	$(".menu-button DIV.div-off").bind("mouseenter", function() {  
		$(this).animate({backgroundColor: "#003366"}, 200);});
		
	$(".menu-button DIV.div-off").bind("mouseleave", function() {  
		$(this).animate({backgroundColor: "#000033"}, 600);});
	

});