//
// 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 = 1
USEFRAMES = 0
USEICONS = 1
WRAPTEXT = 1
PRESERVESTATE = 1
HIGHLIGHT = 1


//
// The following code constructs the tree.
//


	
foldersTree = gFld('SiteMap', 'javascript:parent.op();')
f = foldersTree
insDoc(f,gLnk('R', 'Home', 'index.html'))
insDoc(f,gLnk('R', 'Interim', 'interim.html'))
insDoc(f,gLnk('R', 'Consult', 'consulting.html'))
insDoc(f,gLnk('R', 'Contact', 'contact.html'))
insDoc(f,gLnk('R', 'About', 'about.html'))
insDoc(f,gLnk('R', 'Links', 'links.html'))
insDoc(f,gLnk('R', 'SiteMap', 'sitemap2.html'))
fSub = insFld(f,gFld('Clients', 'clients.html'))
insDoc(fSub,gLnk('R', 'Archimedes Pharma', 'case_archimedes.html'))
insDoc(fSub,gLnk('R', 'Imperial Innovations', 'case_imperial.html'))
insDoc(fSub,gLnk('R', 'Oxford Immunotec', 'case_immunotec.html'))	


	
//
// Set this string because TreeView and other configuration files may also be loaded 
// in the same session.
//
foldersTree.treeID = "SiteMap" 
 
