// You can find instructions for this file here:
// http://www.treeview.net

// Decide if the names are links or just the icons
USETEXTLINKS = 1  //replace 0 with 1 for hyperlinks

// Decide if the tree is to start all open or just showing the root folders
STARTALLOPEN = 0 //replace 0 with 1 to show the whole tree

HIGHLIGHT = 1

foldersTree = gFld("<b>Itinerari<b>", "itinerari.htm")
  aux1 = insFld(foldersTree, gFld("Turistici", "turist.htm"))
      insDoc(aux1, gLnk("R", "Madonna delle sorgenti", "linaro.htm"))
      insDoc(aux1, gLnk("R", "Rifugio Pischioli", "pischioli.htm"))
      insDoc(aux1, gLnk("R", "Cascate S.Giovanni", "sgiovanni.htm"))
      insDoc(aux1, gLnk("R", "Grotte del Cavallone", "main.htm"))
      insDoc(aux1, gLnk("R", "Bocca dei Valloni", "main.htm"))
      insDoc(aux1, gLnk("R", "Colle Bandiera", "colle_b.htm"))
      insDoc(aux1, gLnk("R", "Fonte Tarì", "tari.htm"))
      insDoc(aux1, gLnk("R", "Anello Valle Vesola", "vallevesola.htm"))
  aux1 = insFld(foldersTree, gFld("Escursionistici", "Escurs.htm"))
	  insDoc(aux1, gLnk("R", "Colle Incotto", "colleincotto.htm"))
	  insDoc(aux1, gLnk("R", "Vallone di Taranta", "taranta.htm"))
	  insDoc(aux1, gLnk("R", "Rifugio Pomilio 1", "pomilio1.htm"))
	  insDoc(aux1, gLnk("R", "Rifugio Pomilio 2", "pomilio2.htm"))
	  insDoc(aux1, gLnk("R", "Riserva Feudo Ugni", "ugni.htm"))
	  insDoc(aux1, gLnk("R", "Anello Madonna delle Sorgenti", "anello_linaro.htm"))
	  insDoc(aux1, gLnk("R", "Gobbe di Selvaromana", "gobbe.htm"))
	  insDoc(aux1, gLnk("R", "Anello Vallone tre Grotte", "anellotregrotte.htm"))
	  insDoc(aux1, gLnk("R", "Macirenelle", "macirenelle.htm"))
	  insDoc(aux1, gLnk("R", "Monte Tarì", "mtari.htm"))
	  insDoc(aux1, gLnk("R", "Piano della Casa", "pianodellacasa.htm"))
	  insDoc(aux1, gLnk("R", "Monte Porrara", "monteporrara.htm"))
          insDoc(aux1, gLnk("R", "Valserviera", "valserviera.htm"))


  // If your tree instead of the regular http links has "javascript:function(arg)"
  // links, and the type of the argument is string, special care is needed regarding
  // the quotes and double quotes. Please use exactly the same kind of 
  // quotes or double quotes used in this example (they change from folder to document).
  // Use the exact same number of backslashes for escaping the (double)quote 
  // characters, and pay attention not only to the (double)quotes surrouding the 
  // strings, but also to any (double)quote characters inside of that string

  // If you are going to use a frameless layout, you will need to move the functions 
  // exampleFunction and windowWithoutToolbar to the main page and change
  // parent.functionname to window.functionname in this file

  //Note the "S" target in the first argument of gLnk
  aux1 = insFld(foldersTree, gFld("Esperti", "esperti.htm"))
	  insDoc(aux1, gLnk("R", "M.Amaro da F.S.Martino", "fara-amaro.htm"))
	  insDoc(aux1, gLnk("R", "M.Acquaviva da F.S.Martino", "acquaviva_da_fara.htm"))
          insDoc(aux1, gLnk("R", "Valle Forcone", "forcone.htm"))
	  insDoc(aux1, gLnk("R", "M.Sant Angelo da F.S. Martino", "montesantangelo.htm"))
	  insDoc(aux1, gLnk("R", "Valle Selvaromana", "selvaromana.htm"))
	  insDoc(aux1, gLnk("R", "Murelle da Palombaro", "murelle.htm"))

	  

