$(document).ready(function(){
$(".hoverfade").fadeTo("fast", 0.6);
$(".hoverfade").hover(function(){
$(this).fadeTo("fast", 1.0);
},function(){
$(this).fadeTo("fast", 0.6);
});
});  


