/*
$(document).ready(function() {
	$("a").hover(
		function() { $(this).stop().animate({ color: "#ff9900" }, 700) },
		function() { $(this).stop().animate({ color: "#fff716"}, 1000) }
	);
});
*/
