$(document).ready(function(){
	try {
		$('a').hover(
			function(){
				$(this).animate({color: 'rgb(110,152,52)'}, 400);
			},
			function(){
				$(this).animate({color: 'rgb(0,0,0)'}, 400);
			});
	} catch(e) { alert(e); }
});