	//IMAGENES PARA EL HOME
	// IMAGENES ACTIVAS
	Hhome_on             = new Image(117,32);
	Hhome_on.src         = "images/home2.png";
	Hnosotros_on         = new Image(111,32);
	Hnosotros_on.src     = "images/nosotros2.png";
	Hproductos_on        = new Image(82,32);
	Hproductos_on.src    = "images/productos2.png";
	Hclientes_on         = new Image(75,32);
	Hclientes_on.src     = "images/clientes2.png";
	Hnoticias_on         = new Image(78,32);
	Hnoticias_on.src     = "images/noticias2.png";
	Hboletin_on          = new Image(76,32);
	Hboletin_on.src      = "images/boletin2.png";
	Husuarios_on         = new Image(92,32);
	Husuarios_on.src     = "images/distribuidor2.png";
	Hsoporte_on          = new Image(70,32);
	Hsoporte_on.src      = "images/soporte2.png";
	Hcontactenos_on      = new Image(92,32);
	Hcontactenos_on.src  = "images/contactenos2.png";

	// IMAGENES INACTIVAS

	Hhome_off             = new Image(117,32);
	Hhome_off.src         = "images/home1.png";
	Hnosotros_off         = new Image(111,32);
	Hnosotros_off.src     = "images/nosotros1.png";
	Hproductos_off        = new Image(82,32);
	Hproductos_off.src    = "images/productos1.png";
	Hclientes_off         = new Image(75,32);
	Hclientes_off.src     = "images/clientes1.png";
	Hnoticias_off         = new Image(78,32);
	Hnoticias_off.src     = "images/noticias1.png";
	Hboletin_off        	 = new Image(76,32);
	Hboletin_off.src      = "images/boletin1.png";
	Husuarios_off         = new Image(92,32);
	Husuarios_off.src     = "images/distribuidor1.png";
	Hsoporte_off          = new Image(70,32);
	Hsoporte_off.src      = "images/soporte1.png";
	Hcontactenos_off      = new Image(92,32);
	Hcontactenos_off.src  = "images/contactenos1.png";

	//IMAGENES PARA EL HOME
	// IMAGENES ACTIVAS
	home_on             = new Image(117,32);
	home_on.src         = "../images/home2.png";
	nosotros_on         = new Image(111,32);
	nosotros_on.src     = "../images/nosotros2.png";
	productos_on        = new Image(82,32);
	productos_on.src    = "../images/productos2.png";
	clientes_on         = new Image(75,32);
	clientes_on.src     = "../images/clientes2.png";
	noticias_on         = new Image(78,32);
	noticias_on.src     = "../images/noticias2.png";
	boletin_on          = new Image(76,32);
	boletin_on.src      = "../images/boletin2.png";
	distribuidor_on         = new Image(92,32);
	distribuidor_on.src     = "images/distribuidor2.png";
	soporte_on          = new Image(70,32);
	soporte_on.src      = "../images/soporte2.png";
	contactenos_on      = new Image(91,32);
	contactenos_on.src  = "../images/contactenos2.png";
	presentacion_on     = new Image(150,43);
	presentacion_on.src = "../images/bot_presentacion_f2.jpg";
	demo_on     = new Image(193,30);
	demo_on.src = "../images/bot_verMasInfo.jpg";


	// IMAGENES INACTIVAS

	home_off             = new Image(117,32);
	home_off.src         = "../images/home1.png";
	nosotros_off         = new Image(111,32);
	nosotros_off.src     = "../images/nosotros1.png";
	productos_off        = new Image(82,32);
	productos_off.src    = "../images/productos1.png";
	clientes_off         = new Image(75,32);
	clientes_off.src     = "../images/clientes1.png";
	noticias_off         = new Image(78,32);
	noticias_off.src     = "../images/noticias1.png";
	boletin_off        	 = new Image(76,32);
	boletin_off.src      = "../images/boletin1.png";
	usuarios_off         = new Image(92,32);
	usuarios_off.src     = "../images/distribuidor1.png";
	soporte_off          = new Image(70,32);
	soporte_off.src      = "../images/soporte1.png";
	contactenos_off      = new Image(91,32);
	contactenos_off.src  = "../images/contactenos1.png";
	presentacion_off     = new Image(150,43);
	presentacion_off.src = "../images/bot_presentacion.jpg";
	demo_off     = new Image(193,30);
	demo_off.src = "../images/bot_verMasInfo.jpg";
	
	// FUNCION QUE ACTIVA LAS IMAGENES
	function img_act(imgName)
	{
		if (document.images)
		{
			imgOn = eval(imgName + "_on.src");
			document[imgName].src = imgOn;			
		}
	}
	
	// FUNCION QUE DESACTIVA LAS IMAGENES
	function img_inact(imgName)
	{
		if (document.images)
		{
			imgOff = eval(imgName + "_off.src");
			document[imgName].src = imgOff;			
		}
	}

// FUNCION DE ABRIR VENTANA
function abrirFlash (){
	window.open('../flash/kerux.html','kerux','width=700,height=450,location=no,menubar=no,personalbar=no,resizable=no,status=no,toolbar=no,scrollbars=no');
}

