$(function(){
	$(".primary-links a").hover(function(){
		$(this).animate({color: "#cb6"}, 125);
	},function(){
   		$(this).animate({color: "#ddd"}, 250);
	});
});
