    $(document).ready(function() {
        $('.website').mouseenter(function(e) {
            $(this).children('a').children('span').fadeIn(190);
        }).mouseleave(function(e) {
            $(this).children('a').children('span').fadeOut(190);
        });
    });
