 // Background color animation 
        $(document).ready(function(){
 // font color animation 
                $("#menu a").hover(function() {
                $(this).animate({ color: "#900" }, 400);
        },function() {
    $(this).animate({ color: "#6e6e6e" }, 400);
        });
  });
