function mostraImagem(pacoteId, caminho)
{
    window.open('show_image.php?pacote_id='+pacoteId+'&image='+caminho,'Imagem','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=302,height=302');
}

function menuOver(elemento, cat_filho)
{
    // setando a cor do elemento li
    elemento.style.backgroundColor='#FFFFFF';
    
    // ligar a próxima div
    // se ela existir
    menu = document.getElementById('cat_'+cat_filho);
    if(!menu) return;
    
    menu.style.display='inline';
}

function menuOut(elemento, cat_filho)
{
    // setando a cor do elemento li
    elemento.style.backgroundColor='#FAFAFA';
    
    // desligar a próxima div
    // se ela existir
    menu = document.getElementById('cat_'+cat_filho);
    if(!menu) return;
    
    menu.style.display='none';
}


window.onload=function(){
    if(!NiftyCheck())
    return;
    
    var bordaDefault = "#EAEAEA";
    var fundoDefault = "#FFFFFF";

    if(document.getElementById('produtos')) Rounded("div#produtos", fundoDefault, bordaDefault);
    if(document.getElementById('atendimento')) Rounded("div#atendimento", fundoDefault, bordaDefault);
    if(document.getElementById('carrinho')) Rounded("div#carrinho", fundoDefault, bordaDefault);
    
    if(document.getElementById('publicidade1')) Rounded("div#publicidade1", fundoDefault, bordaDefault);
    if(document.getElementById('publicidade2')) Rounded("div#publicidade2", fundoDefault, bordaDefault);
    if(document.getElementById('publicidade3')) Rounded("div#publicidade3", fundoDefault, bordaDefault);
    if(document.getElementById('publicidade4')) Rounded("div#publicidade4", fundoDefault, bordaDefault);
    if(document.getElementById('promocoes')) Rounded("div#promocoes", fundoDefault, bordaDefault);
    if(document.getElementById('usuarios')) Rounded("div#usuarios", fundoDefault, "#F9F3D1");
    Rounded("div.promocao_alerta", fundoDefault, "#F1EBCC");
    if(document.getElementById('navegacao_filhas')) Rounded("div#navegacao_filhas", fundoDefault, "#F9F3D1");
}