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 =
[

['Where&nbsp;we&nbsp;are',"/Where we are","","","","_self","0", , , , , ],
['Espa&ntilde;ol',"/espannol","","","","_self","0", , , , , ],
['Our&nbsp;Mission',"/Our Mission","","","","_self","0", , , , , ],
['Our&nbsp;Story',"/Our Story","","","","_self","0", , , , , ],
['Facilities',"/Facilities","","","","_self","0", , , , , ],
['|Learning&nbsp;Center',"/Learning Center","","","","_self","1","0" , , , , ],
['|Slothpital',"/Slothpital","","","","_self","1","0" , , , , ],
['The&nbsp;Sloths',"/The slots","","","","_self","0", , , , , ],
['Blogs',"/Blogs","","","","_self","0", , , , , ],
['Adoption&nbsp;Program',"/Adoption Program","","","","_self","0", , , , , ],
['Tours',"/Tours","","","","_self","0", , , , , ],
['Sloth&nbsp;Magic',"/Sloth Magic","","","","_self","0", , , , , ],
['Volunteers',"/Volunteers","","","","_self","0", , , , , ],
['Sleep&nbsp;with&nbsp;the&nbsp;Sloths',"/Facilities","","","","_self","0", , , , , ],
['In&nbsp;Appreciation',"/in appreciation","","","","_self","0", , , , , ],
['Wish&nbsp;List',"/wish list","","","","_self","0", , , , , ],
['SlothMART',"/slothmart/SlothMART.html","","","","_self","0", , , , , ],


];
