    jQuery(function(){

jQuery("#nav a").hover(
function() {
jQuery(this).animate({"opacity": "1"}, 110);
},
function() {
jQuery(this).animate({"opacity": ".6"}, 110);
});

    })

