
//Carga de imágenes WEB

	infocorp_on = new Image(); infocorp_on.src = "images/menu_opciones_on_03.gif"
	infocorp_off = new Image(); infocorp_off.src = "images/menu_opciones_03.gif"
	
	servicios_on = new Image(); servicios_on.src = "images/menu_opciones_on_05.gif"
	servicios_off = new Image(); servicios_off.src = "images/menu_opciones_05.gif"
	
	clientes_on = new Image(); clientes_on.src = "images/menu_opciones_on_06.gif"
	clientes_off = new Image(); clientes_off.src = "images/menu_opciones_06.gif"
	
	contactar_on = new Image(); contactar_on.src = "images/menu_opciones_on_07.gif"
	contactar_off = new Image(); contactar_off.src = "images/menu_opciones_07.gif"
	
//Sustitución de la imagen
	function changeImage(imgName,imgObj) {
	if (document.images) {
		document.images[imgName].src = eval(imgObj+".src")
		}
	}
	
