// 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

ICONPATH = '../graphics/' //change if the gif's folder is a subfolder, for example: 'images/'


foldersTree = gFld("<b>Main menu</b>", "")
  docAux = insDoc(foldersTree, gLnk("T", "Home page", "welcome.php"))
  docAux.iconSrc = ICONPATH + "home.gif"
  aux1 = insFld(foldersTree, gFld("Houlite", "main-eng.php"))
	  insDoc(aux1, gLnk("R", "Vision", "vision.htm"))
	  insDoc(aux1, gLnk("R", "The name", "houlite-src.php"))  
	  docAux = insDoc(aux1, gLnk("R", "Workshop", "workshop.php"))
	  docAux.iconSrc = ICONPATH + "menu-hands.gif"
	  docAux = insDoc(aux1, gLnk("R", "About me", "about-us.php"))
	  docAux.iconSrc = ICONPATH + "menu-smile.gif"
  aux1 = insFld(foldersTree, gFld("Learning Org", "learn-main.htm"))
      docAux = insDoc(aux1, gLnk("R", "How it started", "learn-00.php"))
      docAux.iconSrc = ICONPATH + "menu-hat.gif"
	  docAux = insDoc(aux1, gLnk("R", "5 Disciplines", "learn-05.php"))
      docAux.iconSrc = ICONPATH + "menu-hat.gif"
	  docAux = insDoc(aux1, gLnk("R", "Is / Is Not", "learn-10.php"))
      docAux.iconSrc = ICONPATH + "menu-hat.gif"
	  docAux = insDoc(aux1, gLnk("R", "Principles", "learn-15.php"))
      docAux.iconSrc = ICONPATH + "menu-hat.gif"
	  docAux = insDoc(aux1, gLnk("R", "Impediments", "learn-20.php"))
      docAux.iconSrc = ICONPATH + "menu-hat.gif"
	  docAux = insDoc(aux1, gLnk("R", "Characteristics", "learn-25.php"))
      docAux.iconSrc = ICONPATH + "menu-hat.gif"
	  docAux = insDoc(aux1, gLnk("R", "How to start?", "learn-30.php"))
      docAux.iconSrc = ICONPATH + "menu-hat.gif"
  aux1 = insFld(foldersTree, gFld("Essays", "articles.php"))
      insDoc(aux1, gLnk("R", "The Org. truth", "org-truth.php"))
      insDoc(aux1, gLnk("R", "The Org. heart", "org-heart.php"))
      insDoc(aux1, gLnk("R", "Partnerships", "partnership.php"))
      insDoc(aux1, gLnk("R", "Relationships", "relationship.php"))
      insDoc(aux1, gLnk("R", "Goals", "goals.php"))
  aux1 = insFld(foldersTree, gFld("Tips & Tools", "tips.php"))
	  insDoc(aux1, gLnk("R", "The 5 whys", "five-whys.php"))
	  insDoc(aux1, gLnk("R", "4 Agreements", "4As.php"))
  aux1 = insFld(foldersTree, gFld("Inspirational", "invitation.php"))
  docAux = insDoc(foldersTree, gLnk("R", "Links", "links.php"))
  docAux.iconSrc = ICONPATH + "menu-link.gif"
  docAux = insDoc(foldersTree, gLnk("T", "Email", "email.php"))
  docAux.iconSrc = ICONPATH + "menu-email.gif"
