$(document).ready(function() {
   $('.menu a').mouseover( function() {
$(this).animate({color: "#F4AEB0"}, 250);
$(this).animate({color: "#ce1206",marginTop:"-2px"}, 250);
//$(this).animate({ opacity: 1.0 },250);
}).mouseout( function() {
$(this).animate({color: "#F4AEB0"}, 150);
$(this).animate({color: "#7a281d",marginTop:"0px"}, 350);
//$(this).animate({ opacity: 1.0 },350);
});

});

