$(document).ready(function(){
    $('.menu a').hover(function() { //mouseover
	$(this).animate({
	    'color': '#FFFFFF'
	},300);
    },function() { //mouseout
	$(this).animate({
	    'color': '#808080'
	},300);
    });
});
