// La siguiente función es para el menú horizontal
/*
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("MenHor");
		bbb=navRoot.getElementsByTagName("li");
		for (i=0; i<bbb.length; i++) {
				ccc = bbb[i];
				ccc.onmouseover=function() {
					this.className+=" over";
				}
				ccc.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
		}		
	}
}
*/

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
function activarCSS(title)
{ 
	switch (title) {
	case "rojo":
		document.getElementById("cssAzul").disabled = true;
		document.getElementById("cssRoja").disabled = false;
	break;
	case "azul":
		document.getElementById("cssAzul").disabled = false;
		document.getElementById("cssRoja").disabled = true;
	break;

	break;	}		
} 