$(document).ready(function(){
	$("a").hover(function(){
		$(this).animate({ color: "#FFFFFF" }, 200);
		},function() {
		$(this).animate({ color: "#929292" }, 300);
	});
});
