$(document).ready(function(){
$("#nav a").hover(function() {
$(this).animate({ color: "#99c2b5" }, 100);
},function() {
$(this).animate({ color: "#FFF"  }, 100);
});

$("#sitemap a").hover(function() {
$(this).animate({ color: "#99c2b5" }, 100);
},function() {
$(this).animate({ color: "#FFF"  }, 100);
});

});
