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 =
[

['Principal',"/index.html","","","","_self","0", , , , , ],
['Empresa',"/laempresa","","","","_self","0", , , , , ],
['|Historia',"/laempresa/inicios.html","","","","_self","1","0" , , , , ],
['|Misión y Visión',"/laempresa/index.html","","","","_self","1","0" , , , , ],
['|Valores',"/laempresa/valores.html","","","","_self","1","0" , , , , ],
['|Política Ambiental',"/laempresa/politiicaambiental.html","","","","_self","1","0" , , , , ],
['Productos',"/productos","","","","_self","0", , , , , ],
['|Biológicos y Afines (Bio Pro)',"/productos/biologicosyafines.html","","","","_self","1","0" , , , , ],
['|Coadyuvantes y Pos Cosecha',"/productos/coadyuvantes.html","","","","_self","1","0" , , , , ],
['|Equipo de Aspersión',"/productos/equipodeaspersionindex.html","","","","_self","1","0" , , , , ],
['|Fertilizantes y Fitoreguladores',"/productos/fertilizantes.html","","","","_self","1","0" , , , , ],
['|Fungicidas y Bactericidas',"/productos/fungicidas.html","","","","_self","1","0" , , , , ],
['|Herbicidas',"/productos/herbicidas.html","","","","_self","1","0" , , , , ],
['|Insecticidas-Nematicidas-Acaricidas',"/productos/Insecticidas.html","","","","_self","1","0" , , , , ],
['|Bandejas, Maceteros y Otros',"/productos/bandejasmaceterosotros.html","","","","_self","1","0" , , , , ],
['Proveedores',"/representaciones","","","","_self","0", , , , , ],
['Servicio al Cliente',"/servicioalcliente","","","","_self","0", , , , , ],
['|Servicio al Cliente',"/servicioalcliente/servicioalcliente.html","","","","_self","1","0" , , , , ],
['|Directorio',"/servicioalcliente/index.html","","","","_self","1","0" , , , , ],
['|Promociones',"/servicioalcliente/promociones.html","","","","_self","1","0" , , , , ],
['|Boletines Informativos',"/servicioalcliente/boletinesinformativos.html","","","","_self","1","0" , , , , ],
['Contáctenos',"/contactenos","","","","_self","0", , , , , ],
['Links',"/links","","","","_self","0", , , , , ],
['Mapa de Sitio',"/mapasitio.html","","","","_self","0", , , , , ],


];
