
datos = new Object();
datos = new Array();
for (i=0;i<2;i++) {
    datos[i] = new Array();
    for (j=0;j<9;j++) {
    	datos[i][j] = new Array();
    	for (k=0;k<3;k++) {
    	    datos[i][j][k] = new Array();
    	    for (l=0;l<10;l++) {
    	    	datos[i][j][k][l] = new Array();
	    }
    	}
    }
}

//                    -- Subdirectorio del web
//                    |         --  Subdirectorio que resuelve
//                    |         |         -- Pagina que abre el grupo de informacion
//                    |         |         |         -- Titulo para el enlace.
//                    |         |         |         |
datos[0][0][0][0] = new Array("izq", "", "");
datos[0][1][0][0] = new Array("ptip", "pagizq.html", "P&aacute;gina tipo");
datos[0][2][0][0] = new Array("noveda", "noveda.html", "Novedades");
datos[0][3][0][0] = new Array("estadi", "estadi.html", "Estadisticas de acceso");
datos[0][4][0][0] = new Array("arbol", "arbol.html", "Arbol del web");
datos[0][5][0][0] = new Array("buscad", "buscad.html", "Buscador");
datos[0][6][0][0] = new Array("correo", "correo.html", "Correo");
datos[0][7][0][0] = new Array("ayuda", "ayuda.html", "Ayuda");
datos[0][8][0][0] = new Array("enlaces", "enlawww.html", "Enlaces de inter&eacute;s");
datos[1][0][0][0] = new Array("sup", "", "");
datos[1][1][0][0] = new Array("tiempo", "", "");
datos[1][1][1][0] = new Array("climat", "valnor.html", "Informaci&oacute;n climatol&oacute;gica");
datos[1][1][2][0] = new Array("infmet", "satel/meteose.html", "Informaci&oacute;n meteorol&oacute;gica");
datos[1][1][2][1] = new Array("satel", "meteose.html", "Im&aacute;genes sat&eacute;lite Meteosat");
datos[1][1][2][2] = new Array("radar", "radar.html", "Im&aacute;genes radar");
datos[1][1][2][3] = new Array("rayos", "rayos.html", "Mapas de rayos");
datos[1][1][2][5] = new Array("espan", "mapgen.html", "Informacion meteorologica: Espa&ntilde;a");
datos[1][1][2][6] = new Array("ccaa", "ccaa.html", "Informaci&oacute;n meteorol&oacute;gica: CCAA");
datos[1][1][2][7] = new Array("espec", "espec.html", "Informaci&oacute;n especializada");

/*
for (i=0;i<datos.length;i++) {
    for (j=0;j<datos[i].length;j++) {
    	for (k=0;k<datos[i][j].length;k++) {
    	    for (l=0;l<datos[i][j][k].length;l++) {
    	    	for (m=0;m<datos[i][j][k][l].length;m++) {
document.writeln(datos[i][j][k][l] + "<BR>");
    	    	}
    	    }
    	}
    }
}
document.close();
*/
