function removeString(s, t) {

  i = s.indexOf(t);
  r = "";
  if (i == -1) return s;
  r += s.substring(0,i) + removeString(s.substring(i + t.length), t);
  return r;
  }

function AlternarImagen(img) {
	var searchString = '_ON';
	var imgSrc = img.src.toUpperCase();
	var index = imgSrc.indexOf(searchString);

	if ( index > 0 ) {
      img.src = removeString(imgSrc, searchString);

      //img.src = imgSrc.substring(0,imgSrc.indexOf(searchString)) + remove(imgSrc.substring(i + searchString.length), searchString);
	} else {

	  var ext = imgSrc.substring(imgSrc.length-4, imgSrc.length );

      var leading = imgSrc.substring(0, imgSrc.length-4);

      var trailing = imgSrc.substring(imgSrc.length-4, imgSrc.length);

	  img.src = leading + searchString + trailing;
	}
}


var menuItems =
[

['Novedades',"/Novedades","","","","_self","0", , , , , ],
['Informaci&oacute;n&nbsp;General',"#","","","","_self","0", , , , , ],
['|Museo&nbsp;Juan&nbsp;Santamar&iacute;a',"/Informacion General sobre el Museo Juan Santamaria/index.html","","","","_self","1","0" , , , , ],
['|English&nbsp;Information',"/Informacion General sobre el Museo Juan Santamaria/english_information.html","","","","_self","1","0" , , , , ],
['Servicios&nbsp;Museol&oacute;gicos',"#","","","","_self","0", , , , , ],
['|Auditorio&nbsp;Juan&nbsp;Rafael&nbsp;Mora&nbsp;Porras',"/Servicios Museologicos/auditorio_juan_rafael_mora_porras.html","","","","_self","1","0" , , , , ],
['|Exposiciones&nbsp;temporales',"/Servicios Museologicos/exposiciones_temporales.html","","","","_self","1","0" , , , , ],
['|Sal&oacute;n&nbsp;Multiuso',"/Servicios Museologicos/salon_multiuso.html","","","","_self","1","0" , , , , ],
['|Servicios&nbsp;Educativos',"/Servicios Museologicos/servicios_educativos.html","","","","_self","1","0" , , , , ],
['|Centro&nbsp;de&nbsp;Investigaci&oacute;n&nbsp;y&nbsp;Documentaci&oacute;n',"/Servicios Museologicos/centro_investigacion_documentacion.html","","","","_self","1","0" , , , , ],
['Campa&ntilde;a&nbsp;Nacional',"#","","","","_self","0", , , , , ],
['|Teatro&nbsp;de&nbsp;la&nbsp;Guerra',"/Campana Nacional/teatro_guerra.html","","","","_self","1","0" , , , , ],
['|Cronolog&iacute;a&nbsp;Hist&oacute;rica',"/Campana Nacional/cronologia_historica.html","","","","_self","1","0" , , , , ],
['|Fuentes&nbsp;Hist&oacute;ricas',"/Campana Nacional/fuentes_historicas.html","","","","_self","1","0" , , , , ],
['|Fuentes&nbsp;Historiogr&aacute;ficas',"/Campana Nacional/fuentes_historiograficas.html","","","","_self","1","0" , , , , ],
['Ruta&nbsp;de&nbsp;los&nbsp;H&eacute;roes',"/Ruta de los Heroes","","","","_self","0", , , , , ],
['Sala&nbsp;de&nbsp;Juegos',"#","","","","_self","0", , , , , ],
['|Juego&nbsp;de&nbsp;Memoria',"/Sala de Juegos/memoria.html","","","","_self","1","0" , , , , ],
['|Rompecabezas',"/Sala de Juegos/rompecabezas.html","","","","_self","1","0" , , , , ],
['|Pintando&nbsp;a&nbsp;Juan',"/Sala de Juegos/pintando_juan.html","","","","_self","1","0" , , , , ],
['|Juan&nbsp;el&nbsp;H&eacute;roe',"/Sala de Juegos/juan_heroe.html","","","","_self","1","0" , , , , ],
['Publicaciones',"/Publicaciones","","","","_self","0", , , , , ],
['Galer&iacute;a',"/galeria, historia, campana nacional, museo","","","","_self","0", , , , , ],


];
