$(document).ready(function(){
$("img.hovers").fadeTo("fast", 0.8);
$("img.hovers").hover(function(){
$(this).fadeTo("fast", 1.0);
},function(){
$(this).fadeTo("fast", 0.8);
});
});


