
var columnDefs = {
	capitulos  : { ID          : { type: "Number" },
				 ID_PADRE       : { type: "Number" },
				 ORDEN      : { type: "Number" },
				 NOMBRE      : { type: "String" },
				 PDF      : { type: "String" }	 },
	paginas : { ID          : { type: "Number" },
				ID_CAPITULO       : { type: "Number" },
				NOMBRE       : { type: "String" },
				ORDEN       : { type: "Number" },
				FICHERO       : { type: "String" } }
};

var tableData = {
capitulos: [
{ID:1,ID_PADRE:0,ORDEN:1,NOMBRE:"",PDF:""},

// hijos BLOQUE I
{ID:2,ID_PADRE:1,ORDEN:2,NOMBRE:"Pr&oacute;logo, por Miguel Sebasti&aacute;n",PDF:"Prologo.pdf"},
{ID:3,ID_PADRE:1,ORDEN:3,NOMBRE:"Presentaci&oacute;n, por C&eacute;sar Alierta &nbsp;&nbsp;&nbsp;&nbsp;Izuel",PDF:"Presenta.pdf"},
{ID:4,ID_PADRE:1,ORDEN:4,NOMBRE:"&Iacute;ndice",PDF:""},
{ID:5,ID_PADRE:1,ORDEN:5,NOMBRE:"Resumen ejecutivo",PDF:"Res_eje.pdf"},
{ID:31,ID_PADRE:1,ORDEN:28,NOMBRE:"Glosario",PDF:"Glosario.pdf"},

{ID:6,ID_PADRE:0,ORDEN:2,NOMBRE:"PARTE I: Evaluaci&oacute;n de la <br>&nbsp;&nbsp;&nbsp;&nbsp;Sociedad de la Informaci&oacute;n <br>&nbsp;&nbsp;&nbsp;&nbsp;2008",PDF:""},

// hijos BLOQUE II
{ID:7,ID_PADRE:6,ORDEN:6,NOMBRE:"1. El uso de las TIC por los &nbsp;&nbsp;&nbsp;&nbsp;ciudadanos",PDF:"Cap.01.pdf"},
{ID:8,ID_PADRE:6,ORDEN:7,NOMBRE:"2. El uso de las TIC en las empresas",PDF:"Cap.02.pdf"},
{ID:9,ID_PADRE:6,ORDEN:8,NOMBRE:"3. El uso de las TIC en la &nbsp;&nbsp;&nbsp;&nbsp;Administraci&oacute;n",PDF:"Cap.03.pdf"},
{ID:10,ID_PADRE:6,ORDEN:9,NOMBRE:"4. Servicios y contenidos",PDF:"Cap.04.pdf"},
{ID:11,ID_PADRE:6,ORDEN:10,NOMBRE:"5. Entorno",PDF:"Cap.05.pdf"},

// hijos BLOQUE III
{ID:12,ID_PADRE:0,ORDEN:3,NOMBRE:"PARTE II: La Sociedad de la <br>&nbsp;&nbsp;&nbsp;&nbsp;Informaci&oacute;n en las <br>&nbsp;&nbsp;&nbsp;&nbsp;Comunidades Aut&oacute;nomas",PDF:"BIII_2.pdf"},

{ID:13,ID_PADRE:12,ORDEN:11,NOMBRE:"6. Andaluc&iacute;a",PDF:"Cap.06.pdf"},
{ID:14,ID_PADRE:12,ORDEN:12,NOMBRE:"7. Arag&oacute;n",PDF:"Cap.07.pdf"},
{ID:15,ID_PADRE:12,ORDEN:13,NOMBRE:"8. Principado de Asturias",PDF:"Cap.08.pdf"},
{ID:16,ID_PADRE:12,ORDEN:14,NOMBRE:"9. Illes Balears",PDF:"Cap.09.pdf"},
{ID:17,ID_PADRE:12,ORDEN:15,NOMBRE:"10. Canarias",PDF:"Cap.10.pdf"},
{ID:18,ID_PADRE:12,ORDEN:16,NOMBRE:"11. Cantabria",PDF:"Cap.11.pdf"},
{ID:19,ID_PADRE:12,ORDEN:17,NOMBRE:"12. Castilla y Le&oacute;n",PDF:"Cap.12.pdf"},
{ID:20,ID_PADRE:12,ORDEN:18,NOMBRE:"13. Castilla-La Mancha",PDF:"Cap.13.pdf"},
{ID:21,ID_PADRE:12,ORDEN:19,NOMBRE:"14. Catalunya",PDF:"Cap.14.pdf"},
{ID:22,ID_PADRE:12,ORDEN:20,NOMBRE:"15. Comunitat Valenciana",PDF:"Cap.15.pdf"},
{ID:23,ID_PADRE:12,ORDEN:21,NOMBRE:"16. Extremadura",PDF:"Cap.16.pdf"},
{ID:24,ID_PADRE:12,ORDEN:22,NOMBRE:"17. Euskadi",PDF:"Cap.17.pdf"},
{ID:25,ID_PADRE:12,ORDEN:23,NOMBRE:"18. Galicia",PDF:"Cap.18.pdf"},
{ID:26,ID_PADRE:12,ORDEN:24,NOMBRE:"19. Comunidad de Madrid",PDF:"Cap.19.pdf"},
{ID:27,ID_PADRE:12,ORDEN:25,NOMBRE:"20. Regi&oacute;n de Murcia",PDF:"Cap.20.pdf"},
{ID:28,ID_PADRE:12,ORDEN:26,NOMBRE:"21. Comunidad Foral de Navarra",PDF:"Cap.21.pdf"},
{ID:29,ID_PADRE:12,ORDEN:27,NOMBRE:"22. La Rioja",PDF:"Cap.22.pdf"},
{ID:30,ID_PADRE:12,ORDEN:28,NOMBRE:"23. Ceuta",PDF:"Cap.23.pdf"}
 ],

paginas: [
// paginas BLOQUE I
{ID:0,ID_CAPITULO:2,NOMBRE:"Pr&oacute;logo",ORDEN: 1,FICHERO:"00_00.html"},
{ID:1,ID_CAPITULO:3,NOMBRE:"Presentaci&oacute;n",ORDEN: 2,FICHERO:"00_01.html"},
{ID:2,ID_CAPITULO:4,NOMBRE:"Índice",ORDEN: 3,FICHERO:"00_02.html"},
{ID:3,ID_CAPITULO:5,NOMBRE:"Res&uacute;men ejecutivo",ORDEN: 4,FICHERO:"00_03.html"},
//Glosario
{ID:26,ID_CAPITULO:31,NOMBRE:"Glosario",ORDEN: 27,FICHERO:"00_04.html"},
// paginas BLOQUE II
{ID:4,ID_CAPITULO:7,NOMBRE:"1. El uso de las TIC por los ciudadanos",ORDEN: 4,FICHERO:"01_00.html"},
{ID:5,ID_CAPITULO:8,NOMBRE:"2. El uso de las TIC en las empresas",ORDEN: 5,FICHERO:"02_00.html"},
{ID:6,ID_CAPITULO:9,NOMBRE:"3. El uso de las TIC en la Administraci&oacute;n",ORDEN: 6,FICHERO:"03_00.html"},
{ID:7,ID_CAPITULO:10,NOMBRE:"4. Servicios y contenidos",ORDEN: 7,FICHERO:"04_01.html"},
{ID:8,ID_CAPITULO:11,NOMBRE:"5. Entorno",ORDEN: 8,FICHERO:"05_00.html"},
// paginas BLOQUE III
{ID:9,ID_CAPITULO:13,NOMBRE:"6. Andaluc&iacute;a",ORDEN: 10,FICHERO:"06_00.html"},
{ID:10,ID_CAPITULO:14,NOMBRE:"7. Arag&oacute;n",ORDEN: 11,FICHERO:"07_00.html"},
{ID:11,ID_CAPITULO:15,NOMBRE:"8. Principado de Asturias",ORDEN: 12,FICHERO:"08_00.html"},
{ID:12,ID_CAPITULO:16,NOMBRE:"9. Illes Balears",ORDEN: 13,FICHERO:"09_00.html"},
{ID:13,ID_CAPITULO:17,NOMBRE:"10. Canarias",ORDEN: 14,FICHERO:"10_00.html"},
{ID:14,ID_CAPITULO:18,NOMBRE:"11. Cantabria",ORDEN: 15,FICHERO:"11_00.html"},
{ID:15,ID_CAPITULO:19,NOMBRE:"12. Castilla y Le&oacute;n",ORDEN: 16,FICHERO:"12_00.html"},
{ID:16,ID_CAPITULO:20,NOMBRE:"13. Castilla-La Mancha",ORDEN: 17,FICHERO:"13_00.html"},
{ID:17,ID_CAPITULO:21,NOMBRE:"14. Catalunya",ORDEN: 18,FICHERO:"14_00.html"},
{ID:18,ID_CAPITULO:22,NOMBRE:"15. Comunitat Valenciana",ORDEN: 19,FICHERO:"15_00.html"},
{ID:19,ID_CAPITULO:23,NOMBRE:"16. Extremadura",ORDEN: 20,FICHERO:"16_00.html"},
{ID:20,ID_CAPITULO:24,NOMBRE:"17. Euskadi",ORDEN: 21,FICHERO:"17_00.html"},
{ID:21,ID_CAPITULO:25,NOMBRE:"18. Galicia",ORDEN: 22,FICHERO:"18_00.html"},
{ID:22,ID_CAPITULO:26,NOMBRE:"19. Comunidad de Madrid",ORDEN: 23,FICHERO:"19_00.html"},
{ID:23,ID_CAPITULO:27,NOMBRE:"20. Regi&oacute;n de Murcia",ORDEN: 24,FICHERO:"20_00.html"},
{ID:24,ID_CAPITULO:28,NOMBRE:"21. Comunidad Foral de Navarra",ORDEN: 25,FICHERO:"21_00.html"},
{ID:25,ID_CAPITULO:29,NOMBRE:"22. La Rioja",ORDEN: 26,FICHERO:"22_00.html"},
{ID:26,ID_CAPITULO:30,NOMBRE:"23. Ceuta",ORDEN: 27,FICHERO:"23_00.html"}
]}
