	// VERSION DE NAVEGADOR > 4.0


          if (navigator.appVersion.substring(0,3) < 4.0)             
          { window.location.href = "../index/p_browsererror.asp"; }
	

	// iMAGENES ACTIVAS
	
	
	damas_on         = new Image(84,15);
	damas_on.src     = "../images/menucategoria/damas2.gif";
	caballeros_on         = new Image(84,15);
	caballeros_on.src     = "../images/menucategoria/caballeros2.gif";
	ninos_on         = new Image(84,15);
	ninos_on.src     = "../images/menucategoria/ninos2.gif";
	ninas_on         = new Image(84,15);
	ninas_on.src     = "../images/menucategoria/ninas2.gif";
	todlers_on       = new Image(84,15);
	todlers_on.src   = "../images/menucategoria/todlers2.gif";
	bebes_on         = new Image(84,15);
	bebes_on.src     = "../images/menucategoria/bebes2.gif";

	fdamas_on         = new Image(8,11);
	fdamas_on.src     = "../images/flechita.gif";
	fcaballeros_on         = new Image(8,11);
	fcaballeros_on.src     = "../images/flechita.gif";
	fninos_on         = new Image(8,11);
	fninos_on.src     = "../images/flechita.gif";
	fninas_on         = new Image(8,11);
	fninas_on.src     = "../images/flechita.gif";
	ftodlers_on       = new Image(8,11);
	ftodlers_on.src   = "../images/flechita.gif";
	fbebes_on         = new Image(8,11);
	fbebes_on.src     = "../images/flechita.gif";

	fhome_on         = new Image(8,11);
	fhome_on.src     = "../images/flechita2.gif";
	fbuscador_on         = new Image(8,11);
	fbuscador_on.src     = "../images/flechita2.gif";
	fmicuenta_on         = new Image(8,11);
	fmicuenta_on.src     = "../images/flechita2.gif";
	fofertas_on         = new Image(8,11);
	fofertas_on.src     = "../images/flechita2.gif";
	frecomendaciones_on         = new Image(8,11);
	frecomendaciones_on.src     = "../images/flechita2.gif";
	fservicios_on         = new Image(8,11);
	fservicios_on.src     = "../images/flechita2.gif";
	fcontacto_on         = new Image(8,11);
	fcontacto_on.src     = "../images/flechita2.gif";

	grupo_on         = new Image(104,20);
	grupo_on.src     = "../images/botonesabajo/grupo2.gif";
	tiendas_on         = new Image(104,20);
	tiendas_on.src     = "../images/botonesabajo/tiendas2.gif";
	mapa_on         = new Image(104,20);
	mapa_on.src     = "../images/botonesabajo/mapa2.gif";

	// IMAGENES INACTIVAS
	
	damas_off         = new Image(84,15);
	damas_off.src     = "../images/menucategoria/damas1.gif";
	caballeros_off         = new Image(84,15);
	caballeros_off.src     = "../images/menucategoria/caballeros1.gif";
	ninos_off         = new Image(84,15);
	ninos_off.src     = "../images/menucategoria/ninos1.gif";
	ninas_off         = new Image(84,15);
	ninas_off.src     = "../images/menucategoria/ninas1.gif";
	todlers_off         = new Image(84,15);
	todlers_off.src     = "../images/menucategoria/todlers1.gif";
	bebes_off         = new Image(84,15);
	bebes_off.src     = "../images/menucategoria/bebes1.gif";

	fdamas_off         = new Image(8,11);
	fdamas_off.src     = "../images/flechitatrans.gif";
	fcaballeros_off         = new Image(8,11);
	fcaballeros_off.src     = "../images/flechitatrans.gif";
	fninos_off         = new Image(8,11);
	fninos_off.src     = "../images/flechitatrans.gif";
	fninas_off         = new Image(8,11);
	fninas_off.src     = "../images/flechitatrans.gif";
	ftodlers_off         = new Image(8,11);
	ftodlers_off.src     = "../images/flechitatrans.gif";
	fbebes_off         = new Image(8,11);
	fbebes_off.src     = "../images/flechitatrans.gif";

	fhome_off         = new Image(8,11);
	fhome_off.src     = "../images/flechitatrans.gif";
	fbuscador_off         = new Image(8,11);
	fbuscador_off.src     = "../images/flechitatrans.gif";
	fmicuenta_off         = new Image(8,11);
	fmicuenta_off.src     = "../images/flechitatrans.gif";
	fofertas_off         = new Image(8,11);
	fofertas_off.src     = "../images/flechitatrans.gif";
	frecomendaciones_off         = new Image(8,11);
	frecomendaciones_off.src     = "../images/flechitatrans.gif";
	fservicios_off         = new Image(8,11);
	fservicios_off.src     = "../images/flechitatrans.gif";
	fcontacto_off         = new Image(8,11);
	fcontacto_off.src     = "../images/flechitatrans.gif";

	grupo_off         = new Image(104,20);
	grupo_off.src     = "../images/botonesabajo/grupo1.gif";
	tiendas_off         = new Image(104,20);
	tiendas_off.src     = "../images/botonesabajo/tiendas1.gif";
	mapa_off         = new Image(104,20);
	mapa_off.src     = "../images/botonesabajo/mapa1.gif";


	// 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;
		}
	}
