$(document).ready(function(){
	$(".menu a").stop().hover(function() {
		$(this).stop().animate(
			{ color : " #e68318 " }, 400);
		},function() {
		$(this).animate({ color: "#00abaa" }, 500);
	});
});



