    jQuery(function(){

jQuery(".menu a").hover(
function() {
jQuery(this).animate({"color": "#666"}, "slow");
},
function() {
jQuery(this).animate({"color": "#999"}, "slow");
});

    })

