//
// Copyright (c) 2006 by Conor O'Mahony.
// For enquiries, please email GubuSoft@GubuSoft.com.
// Please keep all copyright notices below.
// Original author of TreeView script is Marcelino Martins.
//
// This document includes the TreeView script.
// The TreeView script can be found at http://www.TreeView.net.
// The script is Copyright (c) 2006 by Conor O'Mahony.
//
// You can find general instructions for this file at www.treeview.net.
//

USETEXTLINKS = 1
STARTALLOPEN = 0
USEFRAMES = 0
USEICONS = 0
WRAPTEXT = 1
PRESERVESTATE = 1

//
// The following code constructs the tree.  This code produces a tree that looks like:
// 
// Tree Options
//  - Expand for example with pics and flags
//    - United States
//      - Boston
//      - Tiny pic of New York City
//      - Washington
//    - Europe
//      - London
//      - Lisbon
//  - Types of node
//    - Expandable with link
//      - London
//    - Expandable without link
//      - NYC
//    - Opens in new window
//

foldersTree = gFld("<b>Site Map</b>", "")
  foldersTree.treeID = "Frameless"
  aux1 = insFld(foldersTree, gFld("HOME", "index.html"))                
	  
  aux1 = insFld(foldersTree, gFld("ABOUT US", "about.html"))
    aux2 = insFld(aux1, gFld("Management ", "#")) 
	aux2 = insFld(aux1, gFld("Mission and Vision", "mission.html")) 
	
  aux1 = insFld(foldersTree, gFld("PROJECTS", "projects.html"))
    
	
  aux1 = insFld(foldersTree, gFld("PARTNERS", "partners.html"))
    aux2 = insFld(aux1, gFld("Became a Partner", "becamepartners.html"))
	
  aux1 = insFld(foldersTree, gFld("CAREERS", "careers.asp"))
    aux2 = insFld(aux1, gFld("View Current Openings", "careers_view.asp"))
	
  aux1 = insFld(foldersTree, gFld("CONTACT US", "contatcs.html"))
   	
  aux1 = insFld(foldersTree, gFld("DISCLAIMER", "disclaimer.html"))
    


