$(document).ready(function(){
	
	$('#menu li a').bind('mouseenter', function(){
		$(this).animate({'background': '#8d97a3'}, 1500);
	});
	
});