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