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 =
[

['Nosotros',"/nosotros.html","","","","_self","0", , , , , ],
['|Historia',"/Nosotros/Historia.html","","","","_self","1","0" , , , , ],
['|Misi&oacute;n&nbsp;y&nbsp;visi&oacute;n',"/Nosotros/Mision y vision.html","","","","_self","1","0" , , , , ],
['|Estructura&nbsp;Organizacional',"/Nosotros/Estructura Organizacional.html","","","","_self","1","0" , , , , ],
['Sucursales',"/Sucursales/index.html","","","","_self","0", , , , , ],
['Informes',"/informes.html","","","","_self","0", , , , , ],
['|Estados&nbsp;Financieros&nbsp;Auditados',"/Estados Financieros/Estados Financieros.html","","","","_self","1","0" , , , , ],
['|Estados&nbsp;Financieros&nbsp;Intermedios',"/Estados Financieros/Estados Financieros Intermedios.html","","","","_self","1","0" , , , , ],
['|Informes&nbsp;Anuales',"/Informe Anual/Informe Anual.html","","","","_self","1","0" , , , , ],
['Responsabilidad&nbsp;Social',"/proyeccion_social.html","","","","_self","0", , , , , ],
['Leyes&nbsp;y&nbsp;Reglamentos',"/Normativa/Normativa.html","","","","_self","0", , , , , ],
['Noticias',"/Noticias.html","","","","_self","0", , , , , ],
['Asociados&nbsp;Del&nbsp;Futuro',"/Captacion/Ahorros/Asociados del Futuro.html","","","","_self","0", , , , , ],
['Manual&nbsp;de&nbsp;Seguridad',"/Manual Seguridad.html","","","","_self","0", , , , , ],


];

