$(function() {
        $("#home")
        .find("span")
        .hide()
        .end()
        .hover(function() {
                $(this).find("span").stop(true, true).fadeIn();
        }, function() {
                $(this).find("span").stop(true, true).fadeOut();
        });
});

$(function() {
        $("#perfil")
        .find("span")
        .hide()
        .end()
        .hover(function() {
                $(this).find("span").stop(true, true).fadeIn();
        }, function() {
                $(this).find("span").stop(true, true).fadeOut();
        });
});

$(function() {
        $("#trabalhos")
        .find("span")
        .hide()
        .end()
        .hover(function() {
                $(this).find("span").stop(true, true).fadeIn();
        }, function() {
                $(this).find("span").stop(true, true).fadeOut();
        });
});

$(function() {
        $("#contato")
        .find("span")
        .hide()
        .end()
        .hover(function() {
                $(this).find("span").stop(true, true).fadeIn();
        }, function() {
                $(this).find("span").stop(true, true).fadeOut();
        });
});
