$(document).ready(function(){		
	$("#header ul li:not(.selected) a").hover(function(){
		$(this).stop().animate({color: "#b71b57"}, 500);
	},function(){
		$(this).stop().animate({color: "#898a84"}, 500, 'easeOutElastic');
	});
});
