jQuery(document).ready(function() {
	
	$(".navhome").hover(function() {
$(this).animate({ backgroundColor: "#C63" }, 600);
},function() {
$(this).animate({ backgroundColor: "#333329" }, 400);
});
$(".navmenu").hover(function() {
$(this).animate({ backgroundColor: "#C63" }, 600);
},function() {
$(this).animate({ backgroundColor: "#666652" }, 400);
});
$(".navreviews").hover(function() {
$(this).animate({ backgroundColor: "#C63" }, 600);
},function() {
$(this).animate({ backgroundColor: "#99997A" }, 400);
});
$(".navfindus").hover(function() {
$(this).animate({ backgroundColor: "#C63" }, 600);
},function() {
$(this).animate({ backgroundColor: "#333329" }, 400);
});

$(".page_item").hover(function() {
$(this).animate({ backgroundColor: "#b4b47c" }, 600);
},function() {
$(this).animate({ backgroundColor: "#cccc99" }, 400);
}); d
});
