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/btn_conozcanos.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="Con&oacute;zcanos" />',"/conozcanos","","","","_self","0", , , , , ],
['|Quienes&nbsp;Somos',"/conozcanos/index.html","","","","_self","1","0" , , , , ],
['|Historia',"/conozcanos/Historia.html","","","","_self","1","0" , , , , ],
['|D&oacute;nde&nbsp;estamos',"/conozcanos/Donde estamos.html","","","","_self","1","0" , , , , ],
['|Madres&nbsp;SOS',"/conozcanos/Madres SOS.html","","","","_self","1","0" , , , , ],
['|Financiamiento',"/conozcanos/Financiamiento.html","","","","_self","1","0" , , , , ],
['<img src=/images/btn_noticias.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="Noticias" />',"/noticiasaldeas","","","","_self","0", , , , , ],
['|Noticias',"/noticiasaldeas/index.html","","","","_self","1","0" , , , , ],
['|Historias',"/noticiasaldeas/Historias.html","","","","_self","1","0" , , , , ],
['|Campa&ntilde;as',"/noticiasaldeas/Campanas.html","","","","_self","1","0" , , , , ],
['<img src=/images/btn_done.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="Done&nbsp;ahora" />',"/Done/Done ahora.html","","","","_self","0", , , , , ],
['<img src=/images/btn_colabore.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="Colabore" />',"/colabore","","","","_self","0", , , , , ],
['|Amigos&nbsp;SOS',"/colabore/index.html","","","","_self","1","0" , , , , ],
['|Empresas&nbsp;y&nbsp;Entidades&nbsp;Amigas',"/colabore/Empresas y Entidades amigas.html","","","","_self","1","0" , , , , ],
['|Bolsa&nbsp;de&nbsp;Empleo',"/colabore/Bolsa de Empleo.html","","","","_self","1","0" , , , , ],
['<img src=/images/btn_embajadores.jpg border="0" onmouseover="AlternarImagen(this)" onmouseout="AlternarImagen(this)" alt="INDEX" />',"/Embajadores SOS/index.html","","","","_self","0", , , , , ],
['|Embajadores&nbsp;Costa&nbsp;Rica',"/Embajadores SOS/Embajadores Costa Rica.html","","","","_self","1","0" , , , , ],
['|Embajadores&nbsp;Internacionales',"/Embajadores SOS/Embajadores Internacionales.html","","","","_self","1","0" , , , , ],


];
