$(document).ready(function(){

	$('#main-nav li a').hover(function(){
		$(this).stop(true).animate({
			backgroundColor: "#750804",
			color: "#fff"
		}, 250)
	
	},
	function(){
		$('#main-nav li a').stop().animate({
			backgroundColor: "transparent",
			color: "#4D4D4F"
		}, 175)
	});

});


