$(document).ready(function(){

    /* NUMERA AS TDs Q QUERO PEGAR */

    $n_posts = $('table.minifp td.minifp').length;
    $('table.minifp td.minifp').first().attr('numero','1');

    if($n_posts >= 3){

        /* MONTA MINHA NOVA DIV */

        $novo_html = '<div class="numeros"><ul><li numero="1">1</li><li numero="2">2</li><li numero="3">3</li><li numero="4">4</li></ul></div><div class="banner_jquery"><div class="carrossel">';

        for($i=1; $i <= $n_posts; $i++){

            $('td[numero="'+$i+'"]').next('td').attr('numero',''+($i+1)+'');
            /*--*/

            $html_atual = $('td[numero="'+$i+'"]').html();

            $novo_html += '<div class="post" numero="'+$i+'">';
            $novo_html += $html_atual.replace("|","");
            $novo_html += '</div>';
        }

        $novo_html += '</div></div>';




        /* REMOVE, DEPOIS ADICIONA A NOVA DIV */
        $('.news-top .module').remove();
        $('.news-top').append($novo_html);




        /* TRATANDO POST */

        $('.banner_jquery .post').children('a:first-child').attr('class','imagem');
        $('.banner_jquery .post .minifp-date').remove();

        $('.banner_jquery .post .minifp-date').remove();
        $('.banner_jquery .post .minifp-seperator').remove();

        $('.banner_jquery .post .minifp-full-link-wrp .minifp-full-link').html('Leia mais.');

    }
});
