$(".fadenav").hover(
	function() {
		$(this)
			//Fade to the new color
			.animate({backgroundColor:'#39c'}, 750)
			//Fade back to original color
			.animate({backgroundColor:'#c63'},750)
		},
	function(){

	}
);