$(document).ready(function() {
	$('#menu li a').hover(function(){
			$(this).animate({color: "#FFFFFF"}, 150);
		},function(){
			$(this).animate({color: "#4e4e4e"} , 150);
		}
	);
});
