$(document).ready(function() {

    // submenu nav principal
	
    $(".submenu, .subnav").hide();

    $("#nav li, #topo ul li").hover(
        function () {
            $(this).children(".submenu, .subnav").slideDown(100);
            $(this).children("a").addClass("active");
        },function(){
            $(this).children(".submenu, .subnav").slideUp(100);
            $(this).children("a").removeClass("active");
        });
	

    $(".nav-linhas ul li").hover(
        function () {
            $(this).children(".submenu, .subnav").show(100);
            $(this).children("a").addClass("active");
        },function(){
            $(this).children(".submenu, .subnav").hide(100);
            $(this).children("a").removeClass("active");
        });


});

function Showdiv(id, classe) {

    var divLeft = [];
    for(i=0; i<300;i++){
        divLeft[i] = 'divLeft'+i;
    }
    for(i=1; i<divLeft.length;i++){
        $('#'+divLeft[i]).hide();
    }
    for(i=0;i<divLeft.length;i++){
        if(divLeft[i]==id){
            $('#'+divLeft[i]).fadeIn();
        }
    }
	
    if (classe=='ativo'){
        $('#divTopLeft').animate({
            width: "700px"
        }, 1500 );

    }

    if (classe=='ativo'){
        $('p').fadeIn('6000');

    }
    if (classe=='normal'){
        $('#divTopLeft').animate({
            width: "74px"
        }, 1500 );

    }
	
	

}