jQuery(document).ready(function($){
$("img.hover").fadeTo(0,1.0);
$("img.hover").hover(function(){
        $(this).fadeTo(70,0.6);
    },
    function(){
        $(this).fadeTo(300,1.0);
    });
});
