$(function(){
    $("img.fadeimg").hover(
        function(){$(this).fadeTo(100, 0.6);},
        function(){$(this).fadeTo(100, 1);}
    );
})
