function navidad() { 
window.open('navidad.htm','NewWindow', 'toolbar=no, location=no, directories=no, menubar=no, scrollbars=yes, width=745, height=489'); }

function preparaMenus()
{
	var smenus = document.getElementById("sub").childNodes;
	for (var i=0; i<smenus.length; i++)
	{
		if (smenus[i].nodeType == 1)
		{
			var aes = smenus[i].getElementsByTagName("a");
			for (var j=0; j<aes.length; j++)
			{
				if(aes[j].href == document.location)
				{
					ponerAOver(aes[j].getElementsByTagName("img")[0]);
					smenus[i].style.display = 'block';
					if(aes[j].parentNode != smenus[i])
					{
						var aPadre = (aes[j].parentNode.previousSibling.nodeType == 1)?aes[j].parentNode.previousSibling:aes[j].parentNode.previousSibling.previousSibling;				
						ponerAOver(aPadre.firstChild);
					}
				}
			}
		}
	}
	function ponerAOver(imagen){imagen.onmouseover();imagen.onmouseout = null;imagen.onmouseover = null;}
}
addOnLoad(preparaMenus);
	
		

function muestra_submenu(capa) {
	grupo = document.getElementById('sub').childNodes;//getElementsByTagName('DIV');
	for (i=0; i<grupo.length; i++) {
		if (grupo[i].nodeType == 1)
		{
			grupo[i].style.display = 'none';
		}
	}
	vista = (document.getElementById(capa).style.display == 'none') ? 'block' : 'none';
	document.getElementById(capa).style.display = vista;
}

function oculta_submenu(capa) {
	vista = (document.getElementById(capa).style.display == 'none') ? 'block' : 'none';
	document.getElementById(capa).style.display = vista;
}

function mostrar(capa) {
	
	vista = (document.getElementById(capa).style.display == 'none') ? 'block' : 'none';
	document.getElementById(capa).style.display = vista;

}

function mostrar2(capa1,capa2,capa3) {
	
   document.getElementById(capa1).style.display = 'none';
	document.getElementById(capa2).style.display = 'none';
	document.getElementById(capa3).style.display = 'block';
	
}

function mostrar3(capa1,capa2,capa3) {
	document.getElementById(capa1).style.display = 'none';
	document.getElementById(capa2).style.display = 'none';
	
	vista = (document.getElementById(capa3).style.display == 'block') ? 'none' : 'block';
	document.getElementById(capa3).style.display = vista;
	
}

function menuedu(capa) {
	grupo = document.getElementById('interiores2').getElementsByTagName('DIV');
	for (i=1; i<grupo.length+1; i++) {
			document.getElementById('edu'+i).style.display = 'none';

	}
	vista = (document.getElementById(capa).style.display == 'none') ? 'block' : 'none';
	document.getElementById(capa).style.display = vista;
}

function asignaturas(pagina) {
	window.open('/asignaturas/'+pagina+'.'+'htm','NewWindow', 'toolbar=no, location=no, directories=no, menubar=no, scrollbars=yes, width=580, height=400');
}

function ocultar() {
	 document.getElementById('iscrdmenu').style.display = 'none';
	 document.getElementById('iitdmenu').style.display= 'none';
	  document.getElementById('iitdmenu2').style.display= 'none';
}

function cambiarsrc(imagen) {
	
	if (document.getElementById(imagen).src.lastIndexOf('/')!=-1){
		firstpos=document.getElementById(imagen).src.lastIndexOf('/')+1;
		lastpos=document.getElementById(imagen).src.length;
		nombre=document.getElementById(imagen).src.substring(firstpos,lastpos);
	}


	if ( nombre == 'asignaturas.gif') {
		
		document.getElementById(imagen).src = 'img/ocultar.gif';
	}
	else {
		document.getElementById(imagen).src = 'img/asignaturas.gif';	
	} 
	
}

