// JavaScript Document

//precarga de botones
   btn01on = new Image(150,144);
   btn01on.src = "/images/botonera/btn_es_profesionales_on.gif";
   btn01off = new Image(56,36);
   btn01off.src = "/images/botonera/btn_es_profesionales.gif";

   btn02on = new Image(150,144);
   btn02on.src = "/images/botonera/btn_es_divulgativos_on.gif";
   btn02off = new Image(56,36);
   btn02off.src = "/images/botonera/btn_es_divulgativos.gif";
 
   btn03on = new Image(150,144);
   btn03on.src = "/images/botonera/btn_es_institucion_on.gif";
   btn03off = new Image(56,36);
   btn03off.src = "/images/botonera/btn_es_institucion.gif";

   btn04on = new Image(150,144);
   btn04on.src = "/images/botonera/btn_es_biblioteca_on.gif";
   btn04off = new Image(56,36);
   btn04off.src = "/images/botonera/btn_es_biblioteca.gif";

//recojo las url de las webs  
  url1 = window.location.href.indexOf('/index.php/contenidos-profesionales/');
  url2 = window.location.href.indexOf('/index.php/contenidos-divulgativos/');	 
  url3 = window.location.href.indexOf('/index.php/contenido-cientifico/');	
  url4 = window.location.href.indexOf('/index.php/contenido-corporativo/');	
  url5 = window.location.href.indexOf('/index.php/los-academicos/');	 
  url6 = window.location.href.indexOf('/index.php/premios-y-convocatorias/'); 
  url7 = window.location.href.indexOf('/index.php/biblioteca/');
  url8 = window.location.href.indexOf('/index.php/comunidad/');
  
//marco aquella opción en la que estoy...  
  if (url1 >= 0) {
    //document.getElementById("btn01").src= "/images/botonera/btn_es_profesionales_on.gif";
    //document.getElementById("enlace1").style.cursor = "default"; 
    //document.getElementById("en1").style.color = "#666666";
  }
  if (url2 >= 0) {
     //document.getElementById("btn02").src= "/images/botonera/btn_es_divulgativos_on.gif";
	 //document.getElementById("enlace2").style.cursor = "default"; 
	 //document.getElementById("en2").style.color = "#666666";
  }
  if (url3 >= 0) {
	 //document.getElementById("en3").style.color = "#666666";
  }
  if (url4 >= 0) {
	 //document.getElementById("en4").style.color = "#666666";
  }	
  if (url5 >= 0) {
     //document.getElementById("btn03").src= "/images/botonera/btn_es_institucion_on.gif";
	 //document.getElementById("enlace3").style.cursor = "default"; 
	 //document.getElementById("en5").style.color = "#666666";
  }
  if (url6 >= 0) {
	 //document.getElementById("en6").style.color = "#666666";
  }
  if (url7 >= 0) {
     //document.getElementById("btn04").src= "/images/botonera/btn_es_biblioteca_on.gif";
	 //document.getElementById("enlace4").style.cursor = "default"; 
	 //document.getElementById("en7").style.color = "#666666";
  }
    if (url8 >= 0) {
	 //document.getElementById("en8").style.color = "#666666";
  }

 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;
