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 =
[

['<img src=/images/menu_cultura.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="&nbsp;Cultura" />',"/cultura","","","","_self","0", , , , , ],
['|Agenda&nbsp;Cultural',"/cultura/Agenda_Direccion_Cultura.html","","","","_self","1","0" , , , , ],
['|Direcciones&nbsp;Regionales',"/cultura/direcciones_regionales.html","","","","_self","1","0" , , , , ],
['|Casa&nbsp;centroamericana',"/cultura/casa centroamericana.html","","","","_self","1","0" , , , , ],
['|Declaratorias',"/cultura/Declaratorias.html","","","","_self","1","0" , , , , ],
['|Gesti&oacute;n&nbsp;y&nbsp;Desarrollo,',"/cultura/gestion y desarrollo.html","","","","_self","1","0" , , , , ],
['|Nuestros&nbsp;Programas',"/cultura/nuestros_programas.html","","","","_self","1","0" , , , , ],
['<img src=/images/menu_artesvisuales.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="Artes&nbsp;Visuales" />',"/artes_visuales","","","","_self","0", , , , , ],
['|Casa&nbsp;del&nbsp;Artista',"/artes_visuales/casa del artista","","","","_self","1","0" , , , , ],
['|Centro&nbsp;de&nbsp;Cine',"http://www.centrodecine.go.cr","","","","_self","1","0" , , , , ],
['|Museo&nbsp;de&nbsp;Arte&nbsp;costarricense',"http://www.musarco.go.cr","","","","_self","1","0" , , , , ],
['|Museo&nbsp;de&nbsp;Arte&nbsp;y&nbsp;Dise&ntilde;o&nbsp;Contempor&aacute;neo',"http://www.madc.ac.cr","","","","_self","1","0" , , , , ],
['<img src=/images/menu_artesescenicas.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="Artes&nbsp;Esc&eacute;nicas" />',"/artes_escenicas","","","","_self","0", , , , , ],
['|Compa&ntilde;ia&nbsp;Nacional&nbsp;de&nbsp;Danza',"/artes_escenicas/compania nacional de danza","","","","_self","1","0" , , , , ],
['|Compa&ntilde;ia&nbsp;Nacional&nbsp;de&nbsp;Teatro',"/artes_escenicas/compania nacional de teatro","","","","_self","1","0" , , , , ],
['|Taller&nbsp;Nacional&nbsp;de&nbsp;Danza',"/artes_escenicas/taller nacional de danza","","","","_self","1","0" , , , , ],
['|Taller&nbsp;Nacional&nbsp;de&nbsp;Teatro',"/artes_escenicas/taller nacional de teatro","","","","_self","1","0" , , , , ],
['|Teatro&nbsp;Melico&nbsp;Salazar',"http://www.teatromelico.go.cr","","","","_self","1","0" , , , , ],
['|Teatro&nbsp;Nacional',"http://www.teatronacional.go.cr","","","","_self","1","0" , , , , ],
['<img src=/images/menu_musica.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="M&uacute;sica" />',"/musica","","","","_self","0", , , , , ],
['|Bandas&nbsp;Nacionales',"/musica/bandas.html","","","","_self","1","0" , , , , ],
['|Orquesta&nbsp;Sinf&oacute;nica&nbsp;Nacional',"http://www.osn.go.cr","","","","_self","1","0" , , , , ],
['<img src=/images/menu_juventud.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="Juventud" />',"http://www.cpj.go.cr","","","","_self","0", , , , , ],
['<img src=/images/menu_patrimonio.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="Patrimonio" />',"/patrimonio","","","","_self","0", , , , , ],
['|Centro&nbsp;de&nbsp;Investigacion&nbsp;y&nbsp;Conservacion&nbsp;del&nbsp;Patrimonio&nbsp;Cultural',"/patrimonio/centro de investigacion y conservacion del patrimonio cultural","","","","_self","1","0" , , , , ],
['|Direcci&oacute;n&nbsp;General&nbsp;de&nbsp;Archivo&nbsp;Nacional',"http://www.archivonacional.go.cr","","","","_self","1","0" , , , , ],
['|Museo&nbsp;Calder&oacute;n&nbsp;Guardia',"/patrimonio/museo calderon guardia","","","","_self","1","0" , , , , ],
['|Museo&nbsp;Jose&nbsp;Figueres&nbsp;Ferrer',"/patrimonio/museo jose figueres ferrer","","","","_self","1","0" , , , , ],
['|Museo&nbsp;Juan&nbsp;Santamar&iacute;a',"http://www.museojuansantamaria.go.cr","","","","_self","1","0" , , , , ],
['|Museo&nbsp;Nacional',"http://www.museocostarica.go.cr","","","","_self","1","0" , , , , ],
['<img src=/images/menu_bibliotecas.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="Bibliotecas" />',"http://www.sinabi.go.cr","","","","_self","0", , , , , ],


];
