// desplegable.js


function ocultar_todo(){


if (!(document.getElementById("tramites")==null))
document.getElementById("tramites").style.visibility="hidden";


if (!(document.getElementById("solicitud")==null))
document.getElementById("solicitud").style.visibility="hidden";

if (!(document.getElementById("solicitud_link")==null))
document.getElementById("solicitud_link").style.color="#FFFFFF";

if (!(document.getElementById("tramites_link")==null))
document.getElementById("tramites_link").style.color="#FFFFFF";

if (!(document.getElementById("consultas")==null))
document.getElementById("consultas").style.visibility="hidden";

if (!(document.getElementById("cersit")==null))
document.getElementById("cersit").style.visibility="hidden";

if (!(document.getElementById("consultas_link")==null))
document.getElementById("consultas_link").style.color="#FFFFFF";

if (!(document.getElementById("cersit_link")==null))
document.getElementById("cersit_link").style.color="#FFFFFF";

}

function mostrar(nombreCapa,id){ 
ocultar_todo();
document.getElementById(nombreCapa).style.visibility="visible"; 
document.getElementById(id).style.color="#78cd27";
}
 
function cambiarcolor(id){
document.getElementById(id).style.color="#78cd27";
}

function color_normal(id){
document.getElementById(id).style.color="#FFFFFF";
}


function toggle(id){
    ul = "ul_" + id;
    img = "img_" + id;
    ulElement = document.getElementById(ul);
    imgElement = document.getElementById(img);
    if (ulElement){
            if (ulElement.className == 'closed'){
                    ulElement.className = "open";
                    imgElement.src = "opened.gif";
                    }else{
                    ulElement.className = "closed";
                    imgElement.src = "closed.gif";
                    }
            }
    }


