jQuery(document).ready(function($) {

    //REMOVE A BORDA DO ÚLTIMO ITEM DAS CAIXAS AMARELAS
    $('.boxSidebar ul').each(function(){
        $(this).children('li:last').css({'border-bottom':'0'});
    });

    $('.resultado .hentry:last').css({'border-bottom':'0'});

    //MOSTRA FORMULÁRIO DE INDICAÇÃO DE POSTAGEM
    $('.postData li.envie a').each(function(){
        $(this).click(function(){
            $(this).parent().parent().parent().next().slideToggle();
        });
    });

});
