// JavaScript Document

function invertir(imagen, base){
	switch(imagen){
		case 'nos': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/nosotros-i.png'; break;
		case 'not': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/noticias-i.png'; break;
		case 'foro': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/foro-i.png'; break;
		case 'fot': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/fotos-i.png'; break;
		case 'club': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/cai-zaragoza-i.png';break;
		case 'porra': window.document.getElementById(imagen).src = base + 'IMAGENES/SIDEBAR/porra2.jpg'; break;
		default:
	}
}

function desinvertir(imagen, base){
	switch(imagen){
		case 'nos': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/nosotros.png'; break;
		case 'not': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/noticias.png'; break;
		case 'foro': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/foro.png'; break;
		case 'fot': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/fotos.png'; break;
		case 'club': window.document.getElementById(imagen).src = base + 'IMAGENES/HEADER/botones/cai-zaragoza.png';
break;
		case 'porra': window.document.getElementById(imagen).src = base + 'IMAGENES/SIDEBAR/porra-i2.jpg'; break;
		default:
	}

}

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", "");
   }
   }
  }
 }
}

window.onload=startList;