$(function(){
    $("#botoes span").each(function(i){
        i %= 7;
        $(this).css("opacity", (i < 4 ? i + 1 : 7 - i) / 4);
    });

    $("#botaosite, #botaoblog").hover(function(){
        $(this).stop().animate({opacity: 1});
        $(this).find("span").stop().animate({marginLeft: 7, marginRight: 7});
    }, function(){
        $(this).stop().animate({opacity: 0.5});
        $(this).find("span").stop().animate({marginLeft: -7, marginRight: -7});
    }).css("opacity", 0.5);
});
