$(document).ready(function(){

    $('.coluna a > div').hover(function(){
        id = $(this).attr('id');
        $(this).stop().animate({
            opacity : 1
        }, 100, function(){
            $('div#'+id+' .legenda').fadeIn(100);
        });
    });

    $('.coluna a > div').mouseout(function(){
        idsaida = $(this).attr('id');
        $(this).stop().animate({
            opacity : 0.5
        }, 100, function(){
            $('.legenda').fadeOut(100);
        });
    });

});
