function teste() {
    alert('1');
}

function adiciona_efeito_menu(elemento){
    elemento.style.textShadow = "0 0 0.4em #ffffff";
}

function retira_efeito_menu(elemento){
    elemento.style.textShadow = "none";
}

function mudar_cor(elemento){
    elemento.style.color = "#4682B4";
}

function voltar_cor(elemento){
    elemento.style.color = "#000000";
}

function getElemento(sElement) {
    var oElement = document.getElementById(sElement);
    if (oElement != null)
        return oElement;
    else
        return document.getElementById("hfmFormulario:" + sElement);
}

function mostraConteudo() {
    this.getElemento('div-conteudo').style.display = "block";     
}
