$(function() {
    $(".FadeEffect").css("opacity","1");

    $(".FadeEffect").hover(function () {
        $(this).stop().animate({
            opacity: 0.4
        }, "slow");
    },
    function(){
        $(this).stop().animate({
            opacity: 1
        }, "slow");
    });
    
    
});

