$(document).ready(function(){
    $('.box').each(function(){// para cada div com classe box_static
        var htmlText  = $(this).html();// removo o html da mesma
        $(this).empty(); // removo todo o conteudo html
        $(this).html( '<div class="wrap1"><div class="wrap2"><div class="wrap3"><div class="wrap4"><div class="wrap5"><div class="wrap6">'+ htmlText +'</div></div></div></div></div></div>');
    });
    $('.box_perfil').each(function(){// para cada div com classe box_static
        var htmlText  = $(this).html();// removo o html da mesma
        $(this).empty(); // removo todo o conteudo html
        $(this).html( '<div class="wrap1"><div class="wrap2"><div class="wrap3"><div class="wrap4"><div class="wrap5"><div class="wrap6">'+ htmlText +'</div></div></div></div></div></div>');
    });
    $('.box_sobre').each(function(){// para cada div com classe box_static
        var htmlText  = $(this).html();// removo o html da mesma
        $(this).empty(); // removo todo o conteudo html
        $(this).html( '<div class="wrap1"><div class="wrap2"><div class="wrap3"><div class="wrap4"><div class="wrap5"><div class="wrap6">'+ htmlText +'</div></div></div></div></div></div>');
    });
    $('.cabecalho').each(function(){// para cada div com classe box_static
        var htmlText  = $(this).html();// removo o html da mesma
        $(this).empty(); // removo todo o conteudo html
        $(this).html( '<div class="wrap1"><div class="wrap2"><div class="wrap3"><div class="wrap4"><div class="wrap5"><div class="wrap6">'+ htmlText +'</div></div></div></div></div></div>');
    });
    $('.banner').each(function(){// para cada div com classe box_static
        var htmlText  = $(this).html();// removo o html da mesma
        $(this).empty(); // removo todo o conteudo html
        $(this).html( '<div class="wrap1"><div class="wrap2"><div class="wrap3"><div class="wrap4"><div class="wrap5"><div class="wrap6">'+ htmlText +'</div></div></div></div></div></div>');
    });

    $("tr:odd").addClass('odd').css('z-index','0');

    $('#down_programas').click(function () {
        $('.lista_downloads').slideToggle('slow');
    });

    $('.bts_tamanho_menu').click(function() {
        var expandir = $('#menu').hasClass('containerExpandido');
        $.post('ajax', {
            tipo: 'estadoMenu',
            expandido: expandir
        });

        if(expandir) {
            $('#menu').removeClass('containerExpandido');
            $('.container').removeClass('containerExpandido');
            $('.bts_tamanho_menu').html('Encolher menu');
        } else {
            $('#menu').addClass('containerExpandido');
            $('.container').addClass('containerExpandido');
            $('.bts_tamanho_menu').html('Expandir');
        }
        return false;
    });
});
