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



