codice:
$(document).ready(function(){
	$("#menu a").hover(function() {
		$(this).animate({
	  		color: "#fff000"
	  	}, 100);	
	});
});