$(document).ready( function() {

	$('#menu a').hover( function(){
		$(this).animate({ color: '#FF9E04' }, 200) ;
	} , function() {
		$(this).animate({ color: 'red' }, 200) ;
	});	

}) ;
