$(document).ready(function(){
$(".navButton").fadeTo("slow", 0.6);
$(".navButton").hover(function(){
$(this).stop().animate({  
opacity: 1.0  
}, "slow");  
},  
function () {  
$(this).stop().animate({  
opacity: 0.6  
}, "slow");  
});  
});

