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 =
[

['Infomaci&oacute;n&nbsp;Financiera',"#","","","","_self","0", , , , , ],
['|Tasas&nbsp;de&nbsp;Inter&eacute;s',"/tasas de interes","","","","_self","1","0" , , , , ],
['|Estados&nbsp;Financieros',"/estados financieros","","","","_self","1","0" , , , , ],
['Formularios',"/formularios","","","","_self","0", , , , , ],
['Servicios&nbsp;Electr&oacute;nicos',"/servicios electronicos","","","","_self","0", , , , , ],
['|Pago&nbsp;de&nbsp;Servicios',"/personas/pago_servicios.html","","","","_self","1","0" , , , , ],
['|Plataforma&nbsp;Internet&nbsp;y&nbsp;Telef&oacute;nica',"/servicios%20electronicos/index.html","","","","_self","1","0" , , , , ],
['Gobierno&nbsp;Corporativo',"/quienes_somos/gobierno corporativo/index.html","","","","_self","0", , , , , ],
['|C&oacute;digo&nbsp;Gobierno&nbsp;Corporativo',"/quienes_somos/gobierno corporativo/Codigo Gobierno Corporativo.html","","","","_self","1","0" , , , , ],
['|Informe&nbsp;Anual&nbsp;de&nbsp;Gobierno&nbsp;Corporativo',"/quienes_somos/gobierno corporativo/Informe anual de Gobierno Corporaticvo.html","","","","_self","1","0" , , , , ],
['|Reglamento&nbsp;de&nbsp;los&nbsp;Comit&eacute;s&nbsp;de&nbsp;Apoyo',"/quienes_somos/gobierno corporativo/Reglamento Comites de Apyo.html","","","","_self","1","0" , , , , ],
['Noticias',"/Noticias/Noticias.html","","","","_self","0", , , , , ],
['Preguntas&nbsp;Frecuentes',"/Preguntas frecuentes/Preguntas Frecuentes.html","","","","_self","0", , , , , ],
['Banca&nbsp;M&oacute;vil',"/servicios electronicos/Sms/Banca Movil.html","","","","_self","0", , , , , ],
['Promociones',"/Promociones/Promociones.html","","","","_self","0", , , , , ],
['Contraloria&nbsp;de&nbsp;Servicios',"/Contraloria de servicios/contraloria de Servicios.html","","","","_self","0", , , , , ],
['Proveeduria',"/Proveeduria/Proveeduria.html","","","","_self","0", , , , , ],


];
