$(document).ready(function() {

    $(".menu").mouseenter(function() {
    $(this).animate({ color: "#fff",backgroundColor: "#43070E" }, 450 );

  }).mouseleave(function() {
   $(this).animate({ color: "#033502",backgroundColor: "#fff" }, 900 );
  });


      $(".currentpage").mouseenter(function() {
    $(this).animate({ color: "silver" }, 450 );

  }).mouseleave(function() {
   $(this).animate({ color: "#fff" }, 900 );
  });

});



