//animate the div background color in the NAV
$(document).ready(function() {

$(".nav").hover(
function() {
$(this).stop().animate({backgroundColor: '#777'});

},
function() {
$(this).stop().animate({backgroundColor: '#222'});

});

});

