//
// 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. 
//

// Configures whether the names of the nodes are links (or whether only the icons
// are links).
USETEXTLINKS = 1

// Configures whether the tree is fully open upon loading of the page, or whether
// only the root node is visible.
STARTALLCLOSED = 1

// Specify if the images are in a subdirectory;
ICONPATH = 'images/treeview/'

USEICONS = 0
HIGHLIGHT = 1;
HIGHLIGHT_COLOR = 'black';
HIGHLIGHT_BG = 'orange';



foldersTree = gFld("Home", "home.html")
  foldersTree.treeID = "Frameset"

  insDoc(foldersTree, gLnk("R", "Why Management?", "whyimagemanagement.html"))
  insDoc(foldersTree, gLnk("R", "Why Imagic?", "whyimagic.html"))

  aux1 = insFld(foldersTree, gFld("Solutions", "solutions.html"))

  aux2 = insFld(aux1, gFld("Products", "products.html"))

  insDoc(aux2, gLnk("R", "ImageAccess", "imageaccess.html"))
  insDoc(aux2, gLnk("R", "Imagic ims", "imagicims.html"))

  aux2 = insFld(aux1, gFld("Services", "services.html"))

  aux3 = insFld(aux2, gFld("Pre-Sales", "presalesconsultancy.html"))
  aux3 = insFld(aux2, gFld("Installation", "installation.html"))
  aux3 = insFld(aux2, gFld("Training", "training.html"))

  aux1 = insFld(foldersTree, gFld("Industries", "industries.html"))

  insDoc(aux1, gLnk("R", "Energy", "energy.html"))
  insDoc(aux1, gLnk("R", "Life Sciences", "lifesciences.html"))
  insDoc(aux1, gLnk("R", "Manufacturing", "manufacturing.html"))
  insDoc(aux1, gLnk("R", "Security", "security.html"))

  aux1 = insFld(foldersTree, gFld("Support", "support.html"))

  aux2 = insFld(aux1, gFld("Options", "supportoptions.html"))

  insDoc(aux2, gLnk("R", "Maintenance", "maintenanceplan.html"))
  insDoc(aux2, gLnk("R", "Upgrades", "upgradeplan.html"))
  insDoc(aux2, gLnk("R", "Consultancy", "consultancy.html"))

  aux2 = insFld(aux1, gFld("Need Support?", "needsupport.html"))

  insDoc(aux2, gLnk("B", "eSupport", "http://www.imageaccess.co.uk/support/"))

  aux2 = insFld(aux1, gFld("Brochures", "downloadbrochures.html"))

  aux1 = insFld(foldersTree, gFld("About Imagic", "aboutimagic.html"))

  insDoc(aux1, gLnk("R", "News", "news.html"))
  insDoc(aux1, gLnk("R", "Contact Us", "contact.html"))
  insDoc(aux1, gLnk("R", "Careers", "careers.html"))
  insDoc(aux1, gLnk("R", "Device Links", "devicelinks.html"))

