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

