<!--
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// loadData() - GENERAL FUNCTION - user defined data and variables exist in this function.

function loadData() {

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Tree structure definitions:
// ROOT NODE:
// treeData.add(new RootNode("<ID>","<NAME>","<URL>","<TARGET>","<ALT ICON>")); 
// NOTE: There must be only ONE root node, and it MUST be the FIRST node.
//       <TARGET> and <ALT ICON> can be left null - defaults will be used.
// FOLDER NODE:
// treeData.add(new FolderNode("<ID>","<PARENT ID>","<NAME>","<ALT ICON CLOSED>","<ALT ICON OPEN>"));
// NOTE: Folder nodes MUST have a valid parent node, and they SHOULD have children nodes.
//       <ALT ICON CLOSED> and <ALT ICON OPEN> can be left null - Tree will use the
//       default images.
// LINK NODE:
// treeData.add(new LinkNode("<PARENT ID>","<NAME>","<URL>","<TARGET>","<ALT ICON>"));
// NOTE: <TARGET> and <ALT ICON> may be left null - defaults specified in the user 
//       defined variables section will be used.

treeData = new Collection();
	
treeData.add(new RootNode('root','','html/chasqui.html',' ',''));      // Root Node MUST be first!
treeData.add(new LinkNode('root','Introducion','html/intro.html','',''));
treeData.add(new LinkNode('root','Presentaci&oacute;n','html/pres.html','',''));
treeData.add(new FolderNode('ley','root','Ley de Digesto (Ley 24967)','',''));
  treeData.add(new LinkNode('ley','La Ley','html/ley24967.html','',''));
  treeData.add(new FolderNode('leyI','ley','Capìtulo I: Principios','',''));
   treeData.add(new LinkNode('leyI','Articulo 1-Valores','html/ley24967.html#cap1','',''));
   treeData.add(new LinkNode('leyI','Articulo 2-Objetivo','html/ley24967.html#cap2','',''));
   treeData.add(new LinkNode('leyI','Articulo 3-Contenido','html/ley24967.html#cap3','',''));
   treeData.add(new LinkNode('leyI','Articulo 4-Integraci&oacute;','html/ley24967.html#cap4','',''));
   treeData.add(new LinkNode('leyI','Articulo 5-Lengaje','html/ley24967.html#cap5','',''));
   treeData.add(new LinkNode('leyI','Articulo 6-T&eacute;cnicas','html/ley24967.html#cap6','',''));
   treeData.add(new LinkNode('leyI','Articulo 7-Categor&iacute;as','html/ley24967.html#cap7','',''));
   treeData.add(new LinkNode('leyI','Articulo 8-Publicitad','html/ley24967.html#cap8','',''));
  treeData.add(new FolderNode('leyII','ley','Capìtulo II: Procedimento','',''));
   treeData.add(new LinkNode('leyII','Articulo 9-Elaboraci&oacute;n','html/ley24967.html#cap9','',''));
   treeData.add(new LinkNode('leyII','Articulo 10-Comisi&oacute;n de Juristas','html/ley24967.html#cap10','',''));
   treeData.add(new LinkNode('leyII','Articulo 11-Plazo','html/ley24967.html#cap11','',''));
   treeData.add(new LinkNode('leyII','Articulo 12-Coordinaci&oacute;n legislativa','html/ley24967.html#cap12','',''));
   treeData.add(new LinkNode('leyII','Articulo 13-Renumeraci&oacute;n','html/ley24967.html#cap13','',''));
   treeData.add(new LinkNode('leyII','Articulo 14-Individualizaci&oacute;n','html/ley24967.html#cap14','',''));
   treeData.add(new LinkNode('leyII','Articulo 15-Aprobaci&oacute;n','html/ley24967.html#cap15','',''));
   treeData.add(new LinkNode('leyII','Articulo 16-Créase en el ámbito del Congreso...','html/ley24967.html#cap16','',''));
   treeData.add(new LinkNode('leyII','Articulo 17-Encuadramiento','html/ley24967.html#cap17','',''));
   treeData.add(new LinkNode('leyII','Articulo 18-Modificaciones','html/ley24967.html#cap18','',''));
   treeData.add(new LinkNode('leyII','Articulo 19-Plazo para la reglamentaci&oacute;n','html/ley24967.html#cap19','',''));
   treeData.add(new LinkNode('leyII','Articulo 20-Comuníquese al Poder Ejecutivo','html/ley24967.html#cap20','',''));
treeData.add(new FolderNode('man','root','Manual de Técnica Legislativa','',''));
 treeData.add(new LinkNode('man','Indice','html/manual.html','',''));
 treeData.add(new LinkNode('man','Definiciones','html/manual.html#definiciones','',''));
 treeData.add(new FolderNode('man1','man','Parte Primera: Estructura logico-sistematica de las Disposiciones Normativas','',''));
	treeData.add(new LinkNode('man1','1.Elementos de las disposiciones normativas','html/manual.html#parteprimera','',''));
	treeData.add(new LinkNode('man1','2.Sumarios','html/manual.html#Regla2','',''));
	treeData.add(new LinkNode('man1','3.T&iacute;tulo de la disposici&oacute;n','html/manual.html#Regla3','',''));
	treeData.add(new LinkNode('man1','4.Homogeneidad terminol&oacute;gica entre el t&iacute;tulo y los enunciados','html/manual.html#Regla4','',''));
	treeData.add(new LinkNode('man1','5.T&iacute;tulos de disposiciones  que ponen en ejecuci&oacute;n la normativa comunitaria o  internacional','html/manual.html#Regla5','',''));
	treeData.add(new LinkNode('man1','6.T&iacute;tulo de disposiciones normativas que modifican actos precedentes como contenido principal o exclusivo','html/manual.html#Regla6','',''));
	treeData.add(new LinkNode('man1','7.T&iacute;tulo de las disposiciones normativas que contienen partes que modifican textualmente disposiciones de precedentes','html/manual.html#Regla7','',''));
	treeData.add(new LinkNode('man1','8.Divisiones del acto de nivel superior al art&iacute;culo','html/manual.html#Regla8','',''));
	treeData.add(new LinkNode('man1','9.El art&iacute;culo','html/manual.html#Regla9','',''));
	treeData.add(new LinkNode('man1','10.Los incisos','html/manual.html#Regla10','',''));
	treeData.add(new LinkNode('man1','11.Divisiones internas de los incisos','html/manual.html#Regla11','',''));
	treeData.add(new LinkNode('man1','12.Anexos','html/manual.html#Regla12','',''));
	treeData.add(new LinkNode('man1','13.T&iacute;tulo de los anexos','html/manual.html#Regla13','',''));
	treeData.add(new LinkNode('man1','14.Referencia expresa del art&iacute;culo al anexo','html/manual.html#Regla14','',''));
	treeData.add(new LinkNode('man1','15.Divisiones internas de los anexos','html/manual.html#Regla15','',''));
	treeData.add(new LinkNode('man1','16.Homogeneidad material del texto y de cada una de las divisiones. Prohibici&oacute;n de normas intrusas','html/manual.html#Regla16','',''));
	treeData.add(new LinkNode('man1','17.Secuencia de las disposiciones','html/manual.html#Regla17','',''));
 treeData.add(new FolderNode('man2','man','Parte Segunda: Lenguaje Normativo','',''));
	treeData.add(new LinkNode('man2','18.Brevedad de las frases','html/manual.html#partesegunda','',''));
	treeData.add(new LinkNode('man2','19.Estilo','html/manual.html#Regla19','',''));
	treeData.add(new LinkNode('man2','20.Uso de los verbos. Tiempos y modos','html/manual.html#Regla20','',''));
	treeData.add(new LinkNode('man2','21.Verbos con funciones ambig&uuml;as','html/manual.html#Regla21','',''));
	treeData.add(new LinkNode('man2','22.Claridad de las disposiciones','html/manual.html#Regla22','',''));
	treeData.add(new LinkNode('man2','23.Adverbios de negaci&oacute;n','html/manual.html#Regla23','',''));
	treeData.add(new LinkNode('man2','24.Significado sint&aacute;ctico de las conjunciones','html/manual.html#Regla24','',''));
	treeData.add(new LinkNode('man2','25.Conjunciones disyuntivas','html/manual.html#Regla25','',''));
	treeData.add(new LinkNode('man2','26.Cnjunciones condicionales','html/manual.html#Regla26','',''));
	treeData.add(new LinkNode('man2','27.Car&aacute;cter taxativo o ejemplificativo, acumulativo o alternativo de las enumeraciones','html/manual.html#Regla27','',''));
	treeData.add(new LinkNode('man2','28.Enunciados carentes de significado normativo','html/manual.html#Regla28','',''));
	treeData.add(new LinkNode('man2','29.Terminos juridicos o tecnicos','html/manual.html#Regla29','',''));
	treeData.add(new LinkNode('man2','30.T&eacute;rminos con un significado diverso en el lenguaje jur&iacute;dico y en el corriente','html/manual.html#Regla30','',''));
	treeData.add(new LinkNode('man2','31.Definiciones','html/manual.html#Regla31','',''));
	treeData.add(new LinkNode('man2','32.Homogeneidad terminol&oacute;gica','html/manual.html#Regla32','',''));
	treeData.add(new LinkNode('man2','33.T&eacute;rminos extranjeros y neologismos','html/manual.html#Regla33','',''));
	treeData.add(new LinkNode('man2','34.Repetici&oacute;n de t&eacute;rminos','html/manual.html#Regla34','',''));
	treeData.add(new LinkNode('man2','35.Remisi&oacute;n a las reglas de la Real academia espa&ntilde;ola','html/manual.html#Regla35','',''));
 treeData.add(new FolderNode('man3','man','Parte Tercera: Escritura de Textos Normativos','',''));
	treeData.add(new LinkNode('man3','36.Uso de abreviaturas y siglas','html/manual.html#partetercera','',''));
	treeData.add(new LinkNode('man3','37.Escritura de siglas y abreviaturas','html/manual.html#Regla37','',''));
	treeData.add(new LinkNode('man3','38.Uso de las letras may&uacute;sculas','html/manual.html#Regla38','',''));
	treeData.add(new LinkNode('man3','39.Escritura de los n&uacute;meros en general','html/manual.html#Regla39','',''));
	treeData.add(new LinkNode('man3','40.Fechas','html/manual.html#Regla40','',''));
	treeData.add(new LinkNode('man3','41.Signos de puntuaci&oacute;n y otros signos de uso corriente','html/manual.html#Regla41','',''));
	treeData.add(new LinkNode('man3','42.S&iacute;mbolos convencionales de unidad de medida o monetaria','html/manual.html#Regla42','',''));
	treeData.add(new LinkNode('man3','43.S&iacute;mbolos convencionales propios del lenguaje t&eacute;cnico o cient&iacute;fico','html/manual.html#Regla43','',''));
	treeData.add(new LinkNode('man3','44.Citas de disposiciones normativas','html/manual.html#Regla424','',''));
	treeData.add(new LinkNode('man3','45.Reglas particulares de  cita de disposiciones  normativas','html/manual.html#Regla45','',''));
	treeData.add(new LinkNode('man3','46.Reglas  para las citas de las particiones internas de los articulos','html/manual.html#Regla46','',''));
	treeData.add(new LinkNode('man3','47.Citas de divisiones de disposiciones  comunitarias o internacionales','html/manual.html#Regla47','',''));
 treeData.add(new FolderNode('man4','man','Parte Cuarta: Referencias','',''));
	treeData.add(new LinkNode('man4','48.Referencias internas','html/manual.html#partecuarta','',''));
	treeData.add(new LinkNode('man4','49.Referencias a divisiones superiores al art&iacute;culo','html/manual.html#Regla49','',''));
	treeData.add(new LinkNode('man4','50.Referencias  al  art&iacute;culo  o  a  particiones inferiores al art&iacute;culo','html/manual.html#Regla50','',''));
	treeData.add(new LinkNode('man4','51.Referencias externas','html/manual.html#Regla51','',''));
	treeData.add(new LinkNode('man4','52.Referencias a textos modificados','html/manual.html#Regla52','',''));
 treeData.add(new FolderNode('man5','man','Parte Quinta: Modificationes','',''));
	treeData.add(new LinkNode('man5','53.Uso de los t&eacute;rminos "sustituci&oacute;n", "integraci&oacute;n", "abrogaci&oacute;n", "derogaci&oacute;n", "pr&oacute;rroga",  "suspensi&oacute;n" y &quot;excepcion&quot;','html/manual.html#partequinta','',''));
	treeData.add(new LinkNode('man5','54.Modificaciones impl&iacute;citas y expl&iacute;citas','html/manual.html#Regla54','',''));
	treeData.add(new LinkNode('man5','55.Modificaciones expl&iacute;citas textuales','html/manual.html#Regla55','',''));
	treeData.add(new LinkNode('man5','56.Cu&aacute;ndo es preferible modificar textualmente y cu&aacute;ndo introducir modificaciones no textuales y abrogar disposiciones precedentes','html/manual.html#Regla56','',''));
	treeData.add(new LinkNode('man5','57.Abrogaci&oacute;n expresa, abrogacion innominada, abrogaci&oacute;n impl&iacute;cita y parcialmente impl&iacute;cita','html/manual.html#Regla57','',''));
	treeData.add(new LinkNode('man5','58.Modificaciones expl&iacute;citas no textuales','html/manual.html#Regla58','',''));
	treeData.add(new LinkNode('man5','59.Modificaciones textuales m&uacute;ltiples','html/manual.html#Regla59','',''));
	treeData.add(new LinkNode('man5','60.Sistem&aacute;tica de las modificaciones','html/manual.html#Regla60','',''));
	treeData.add(new LinkNode('man5','61.Consolidaci&oacute;n','html/manual.html#Regla61','',''));
	treeData.add(new LinkNode('man5','62.Derogacion expresa','html/manual.html#Regla62','',''));
	treeData.add(new LinkNode('man5','63.Diferencia entre  derogacion  expresa  y sustituci&oacute;n','html/manual.html#Regla63','',''));
	treeData.add(new LinkNode('man5','64.Derogaci&oacute;n expresa y modificaciones no textuales','html/manual.html#Regla64','',''));
	treeData.add(new LinkNode('man5','65.Preferencia  por  la modificaci&oacute;n textual   respecto a la no textual','html/manual.html#Regla65','',''));
	treeData.add(new LinkNode('man5','66.Excepcion  expl&iacute;cita e impl&iacute;cita','html/manual.html#Regla66','',''));
	treeData.add(new LinkNode('man5','67.Excepcion textual','html/manual.html#Regla67','',''));
	treeData.add(new LinkNode('man5','68.Pr&oacute;rrogas y suspensiones','html/manual.html#Regla68','',''));
	treeData.add(new LinkNode('man5','69.Revivificaci&oacute;n','html/manual.html#Regla69','',''));
	treeData.add(new LinkNode('man5','70.Textos ordenados','html/manual.html#Regla70','',''));
	treeData.add(new LinkNode('man5','71.Documentos normativos','html/manual.html#Regla71','',''));
 treeData.add(new FolderNode('manex','man','Ejemplos','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 3, inciso 1)','html/manual.html#ejemplos','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 3, inciso 2)','html/manual.html#ejemplos3_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 4, inciso 1)','html/manual.html#ejemplos4_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 5, inciso 1)','html/manual.html#ejemplos5_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 6, inciso 1)','html/manual.html#ejemplos6_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 6, inciso 2, letra a)','html/manual.html#ejemplos6_2a','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 6, inciso 2, letra c)','html/manual.html#ejemplos6_2c','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 6, inciso 2, letra e)','html/manual.html#ejemplos6_2e','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 6, inciso 2, letra f)','html/manual.html#ejemplos6_2f','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 6, inciso 2, letra g)','html/manual.html#ejemplos6_2g','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 7, inciso 1)','html/manual.html#ejemplos7_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 8, inciso 5)','html/manual.html#ejemplos85','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 9, inciso 4)','html/manual.html#ejemplos94','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 9, inciso 9)','html/manual.html#ejemplos9_5','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 11, inciso 2)','html/manual.html#ejemplos112','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 12, inciso 1)','html/manual.html#ejemplos12_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 12, inciso 2)','html/manual.html#ejemplos12_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 13, inciso 1)','html/manual.html#ejemplos13_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 15, inciso 1)','html/manual.html#ejemplos15_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 16, inciso 2)','html/manual.html#ejemplos16_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 16, inciso 3)','html/manual.html#ejemplos16_3','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 17, inciso 1, letra a)','html/manual.html#ejemplos17_1a3','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 17, inciso 1, letra b)','html/manual.html#ejemplos17_1b','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 17, inciso 1, letra c)','html/manual.html#ejemplos17_1c5','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 17, inciso 1, letra c)','html/manual.html#ejemplos17_1c6','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 18, inciso 1)','html/manual.html#ejemplos18_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 19, inciso 1)','html/manual.html#ejemplos19_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 20, inciso 1)','html/manual.html#ejemplos20_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 21, inciso 1)','html/manual.html#ejemplos21_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 22, inciso 1)','html/manual.html#ejemplos22_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 23, inciso 1)','html/manual.html#ejemplos23_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 24, inciso 1)','html/manual.html#ejemplos24_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 25, inciso 1)','html/manual.html#ejemplos25_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 27, inciso 1)','html/manual.html#ejemplos27_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 28, inciso 1)','html/manual.html#ejemplos28_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 29, inciso 1)','html/manual.html#ejemplos29_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 30, inciso 1)','html/manual.html#ejemplos30_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 31, inciso 1)','html/manual.html#ejemplos31_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 32, inciso 1)','html/manual.html#ejemplos32_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 32, inciso 2)','html/manual.html#ejemplos32_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 32, inciso 3)','html/manual.html#ejemplos32_3','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 33, inciso 1)','html/manual.html#ejemplos33_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 34, inciso 1)','html/manual.html#ejemplos34_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 36, inciso 1)','html/manual.html#ejemplos36_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 36, inciso 2)','html/manual.html#ejemplos36_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 37, inciso 2)','html/manual.html#ejemplos37_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 37, inciso 3)','html/manual.html#ejemplos37_3','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 38, inciso 1)','html/manual.html#ejemplos38_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 39, inciso 1)','html/manual.html#ejemplos39_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 40, inciso 1)','html/manual.html#ejemplos40_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 41, inciso 1, letra a)','html/manual.html#ejemplos41_1a','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 41, inciso 1, letra b)','html/manual.html#ejemplos41_1b','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 41, inciso 1, letra c)','html/manual.html#ejemplos41_1c','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 41, inciso 1, letra d)','html/manual.html#ejemplos41_1d','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 41, inciso 1, letra e)','html/manual.html#ejemplos41_1e','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 41, inciso 1, letra h)','html/manual.html#ejemplos41_1h','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 41, inciso 1, letra i)','html/manual.html#ejemplos41_1i','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 41, inciso 1, letra m)','html/manual.html#ejemplos41_1m','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 42, inciso 1)','html/manual.html#ejemplos42_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 43, inciso 1)','html/manual.html#ejemplos43_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 45, inciso 1)','html/manual.html#ejemplos45_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 45, inciso 3)','html/manual.html#ejemplos45_3','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 45, inciso 4)','html/manual.html#ejemplos45_4','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 45, inciso 8)','html/manual.html#ejemplos45_8','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 46, inciso 2)','html/manual.html#ejemplos46_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 46, inciso 3)','html/manual.html#ejemplos46_3','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 47, inciso 1)','html/manual.html#ejemplos47_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 48, inciso 1)','html/manual.html#ejemplos48_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 48, inciso 2)','html/manual.html#ejemplos48_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 49, inciso 1)','html/manual.html#ejemplos49_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 50, inciso 1)','html/manual.html#ejemplos50_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 51, inciso 1)','html/manual.html#ejemplos51_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 51, inciso 2)','html/manual.html#ejemplos51_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 51, inciso 4)','html/manual.html#ejemplos51_4','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 52, inciso 1)','html/manual.html#ejemplos52_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 53, inciso 1)','html/manual.html#ejemplos53_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 54, inciso 2)','html/manual.html#ejemplos54_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 55, inciso 1)','html/manual.html#ejemplos55_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 57, inciso 1)','html/manual.html#ejemplos51_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 57, inciso 3)','html/manual.html#ejemplos51_3','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 60, inciso 1)','html/manual.html#ejemplos60_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 62, inciso 1)','html/manual.html#ejemplos62_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 65, inciso 1)','html/manual.html#ejemplos65_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 68, inciso 2)','html/manual.html#ejemplos68_2','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 68, inciso 3)','html/manual.html#ejemplos68_3','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 69, inciso 1)','html/manual.html#ejemplos69_1','',''));
	treeData.add(new LinkNode('manex','Ejemplos (articulo 70, inciso 1)','html/manual.html#ejemplos70_1','',''));
 treeData.add(new FolderNode('manef','man','Formulas','',''));
	treeData.add(new LinkNode('manef','Formulas (articulo 5, inciso 1)','html/manual.html#formulas','',''));
	treeData.add(new LinkNode('manef','Formulas (articulo 6, inciso 2, letra a)','html/manual.html#form6_2a','',''));
	treeData.add(new LinkNode('manef','Formulas (articulo 11, inciso 2)','html/manual.html#form11_2','',''));
	treeData.add(new LinkNode('manef','Formulas (articulo 25, inciso 2)','html/manual.html#form25_2','',''));
	treeData.add(new LinkNode('manef','Formulas (articulo 26, inciso 1)','html/manual.html#form26_1','',''));
	treeData.add(new LinkNode('manef','Formulas (articulo 27, inciso 1)','html/manual.html#form27_1','',''));
	treeData.add(new LinkNode('manef','Formulas (articulo 31, inciso 2)','html/manual.html#form31_2','',''));
	treeData.add(new LinkNode('manef','Formulas (articulo 45, inciso 7)','html/manual.html#form45_7','',''));
	treeData.add(new LinkNode('manef','Formulas (articulo 55, inciso 2)','html/manual.html#form55_1','',''));

treeData.add(new FolderNode('chk','root','Check List','',''));
  treeData.add(new LinkNode('chk','Para la Creaci&oacute;n de las Disposiciones Normativas','html/checkl.html#I','',''));
  treeData.add(new LinkNode('chk','Para la Redacci&oacute;n de las Disposiciones Normativas','html/checkl.html#II','',''));

treeData.add(new FolderNode('con','root','Algunas Considerationes sombre el Manual','',''));
  treeData.add(new LinkNode('con','I. Introducci&oacute;n','html/consid.html','',''));
  treeData.add(new LinkNode('con','II. Antecedentes','html/consid.html#cap2','',''));
  treeData.add(new LinkNode('con','III. Ejemplo para evitar','html/consid.html#cap3','',''));
  treeData.add(new LinkNode('con','IV. Estructura funcional y formal del los texto','html/consid.html#cap3b','',''));
  treeData.add(new LinkNode('con','V. Consideraciones','html/consid.html#cap4','',''));
  treeData.add(new LinkNode('con','VI. Para este Manual','html/consid.html#cap5','',''));
  treeData.add(new LinkNode('con','Anexo I. Lista de Manuales que se han consultado para redactar el Manual de T&eacute;cnica legislativa del Digesto Jur&iacute;dico Argentino','html/consida1.html#capa-3','',''));
  treeData.add(new LinkNode('con','Anexo II. Bibliografia consultada','html/consida2.html#capa-2','',''));
  treeData.add(new LinkNode('con','Anexo III. Sitios  de Internet consultados','html/consida3.html#capa-3','',''));

treeData.add(new LinkNode('root','Acerca de','html/credits.html','',''));

// Fine Menu
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// User defined variables:	

      structureStyle = 0;                    // 0 for light background, 1 for dark background

      backgroundColor = '';           // sets the bgColor of the menu
            textColor = '#000000';           // sets the color of the text used in the menu
            linkColor = '#0000AA';           // sets the color of any text links (usually defined in additional HTML sources)
           aLinkColor = '#FF0000';           // sets the active link color (when you click on the link)
           vLinkColor = '#880088';           // sets the visited link color

      backgroundImage = 'menu/pergamena.jpg';     // give the complete path to a gif or jpeg to use as a background image

      defaultTargetFrame = 'pageFrame';      // the name of the frame that links will load into by default 
      defaultImageURL = 'menu/';             // the URL or path where the Tree images are located

      defaultLinkIcon = 'img-doc.gif';       // the default icon image used for links

      TreeFont = 'Arial,Helvetica';  // the font used for the menu
      TreeFontSize = 1;                      // its size - don't make it too big!

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Additional HTML sources:

      prefixHTML = "<img src='menu/testa.gif'><br>"; //<font size=4><b>Ind&iacute;ce</b></font>";
	  presHTML = "<applet codebase='html' code ='Player.class' width=22 height=22>" +
  				 "<param name='init' value = 'PAUSE'>" +
                 "<param name='au_file' value = 'html/commento.au'>" +
                 "<param name='loop' value = 'YES'></applet>";

      suffixHTMLbase = "<HR width='30%'>";
      suffixHTMLpres = "<HR width='30%'> Comentario: " + presHTML + "<HR width='30%'>";
//"<div align=center><hr>Controllo Animazion<br>"+
//"<a href='javascript:top.AutoSlide();'>Inicio</a> |"+
//" <a href='javascript:top.AutoSlideBreak();'>Detener</a>"+
//" | <a href='javascript:top.next_slide();'>Adelante</a> |"+
//" <a href='javascript:top.prev_slide();'>Atras</a>" +
//"<hr></div>" ;
      suffixHTML = suffixHTMLpres ;
}

// -->

