//hoverˇ˛fade‹@”\

$(document).ready(function(){
$("img.fadeEffect").hover(function(){
        $(this).fadeTo(350,0.6);
    },
    function(){
        $(this).fadeTo(350,1.0);
    });
});






