// Efeitos do Menu
function menuOver(camadaId, tipoId) {
camada = camadaId;
tipo = tipoId;
document.getElementById(camada).style.cursor = "pointer";
if(tipo == 1){
document.getElementById(camada).style.backgroundColor = "#CCCCCC";
document.getElementById(camada).style.border = "1px solid #666666";
document.getElementById(camada).style.color = "#000000";
document.getElementById(camada).style.height = "21px";
document.getElementById(camada).style.lineHeight = "21px";
} else if (tipo == 2) {
document.getElementById(camada).style.backgroundColor = "#FFFFDD";
} else if (tipo == 0){}
}
function menuOff(camadaId, tipoId) {
camada = camadaId;
tipo = tipoId;
document.getElementById(camada).style.cursor = "arrow";
if(tipo == 1) {
document.getElementById(camada).style.backgroundColor = "#000000";
document.getElementById(camada).style.border = "";
document.getElementById(camada).style.color = "#EEEEEE";
document.getElementById(camada).style.height = "23px";
document.getElementById(camada).style.lineHeight = "23px";
} else if(tipo == 2){
document.getElementById(camada).style.backgroundColor = "#FFFFFF";
} else if (tipo == 0){}
}
function mudaPagina(paginaId) {
pagina = paginaId;
window.location = pagina;
}
