    $().ready(function() {
        var eEffect = $('.top-banner-effect');
        eEffect.css({opacity:0});
        
        eEffect.hover(
            function(){ $(this).css({opacity:1}); },
            function(){ $(this).css({opacity:0}); }
        );
    });