$(document).ready(function() {

$('body').hide();
$('body').fadeIn(2000);

$('a').hover(function(){   
$(this).animate({color:'#6f6f6f'}, 300);
},function() {	
$(this).animate({color:'#F12A2A '}, 300)

});
	





});


 

