$(document).ready(function(){
$(".imgfade").fadeTo("slow", 1.0);
$(".imgfade").hover(function(){
$(this).fadeTo("slow", 0.7);
},function(){
$(this).fadeTo("slow", 1.0);
});
});

$(document).ready(function(){
$(".starfade").fadeTo("slow", 0.5);
$(".starfade").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.5);
});
});