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