//
// 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.
STARTALLOPEN = 0

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


foldersTree = gFld("<i>Home</i>", "home.html")
  foldersTree.treeID = "Frameset"
  foldersTree.iconSrc = ICONPATH + "home.gif"  
  foldersTree.iconSrcClosed = ICONPATH + "home.gif" 

   	aux2 = insFld(foldersTree, gFld(" Virtual Fader Master", "vfm.html"))
   	aux2.iconSrc = ICONPATH + "FaderMaster.gif"  
   	aux2.iconSrcClosed = ICONPATH + "FaderMaster.gif"
     insDoc(aux2, gLnk("R", "Download Page", "vfm_download.html"))
  
	aux2 = insFld(foldersTree, gFld(" TheGrid", "TheGrid.html"))
    aux2.iconSrc = ICONPATH + "thegrid.gif"  
    aux2.iconSrcClosed = ICONPATH + "thegrid.gif"
     insDoc(aux2, gLnk("R", "Screen Shots", "TheGrid_ScreenShots.html"))
     insDoc(aux2, gLnk("R", "Performance Ideas", "TheGrid_Overview.html"))
     insDoc(aux2, gLnk("R", "Download Page", "TheGrid_Download.html"))
	
 	aux2 = insFld(foldersTree, gFld(" Free MIDI Display", "MidiDisplay.html"))
   	aux2.iconSrc = ICONPATH + "mididisplay.gif"  
   	aux2.iconSrcClosed = ICONPATH + "mididisplay.gif"

	aux2 = insFld(foldersTree, gFld(" MyKits", "/MyKits/index.html"))
   	aux2.iconSrc = ICONPATH + "MyKits.gif"  
   	aux2.iconSrcClosed = ICONPATH + "MyKits.gif"
	insDoc(aux2,gLnk("R","Download Page","/MyKits/download.html"))
	insDoc(aux2,gLnk("R","Controller Builder","/MyKits/ControllerBuilder.html"))
	insDoc(aux2,gLnk("R","Instrument Builder","/MyKits/InstrumentBuilder.html"))
	insDoc(aux2,gLnk("R","Output Builder","/MyKits/OutputBuilder.html"))
	insDoc(aux2,gLnk("R","Kit Builder","/MyKits/KitBuilder.html"))	
	insDoc(aux2,gLnk("R","Song Builder","/MyKits/SongBuilder.html"))
	insDoc(aux2,gLnk("R","Set Builder","/MyKits/SetBuilder.html"))
	insDoc(aux2,gLnk("R","Performance Mode","/MyKits/Performance.html"))
	aux3 = insFld(aux2, gFld(" Music Demos", ""))
  	aux3.iconSrc = ICONPATH + "notes.gif"  
   	aux3.iconSrcClosed = ICONPATH + "notes.gif"
	audioDoc = insDoc(aux3,gLnk("R","Amazing Grace","/MyKits/AmazingGrace.html"))
	audioDoc.iconSrc = ICONPATH + "notes.gif"
	audioDoc = insDoc(aux3,gLnk("R","MyKits and Cubase","/MyKits/Cubase.html"))
	audioDoc.iconSrc = ICONPATH + "notes.gif"
    audioDoc = insDoc(aux3,gLnk("R","Fun with Loops","/MyKits/FunWithLoops.html"))
	audioDoc.iconSrc = ICONPATH + "notes.gif"

   	aux2 = insFld(foldersTree, gFld(" QuickMail", "QuickMail.html"))
   	aux2.iconSrc = ICONPATH + "QuickMail.gif"  
   	aux2.iconSrcClosed = ICONPATH + "QuickMail.gif"
    insDoc(aux2, gLnk("R", "Download Page", "QuickMail_Download.html"))

    aux2 = insFld(foldersTree, gFld(" MyUrls", "MyUrls.html"))
   	aux2.iconSrc = ICONPATH + "MyUrls.gif"  
   	aux2.iconSrcClosed = ICONPATH + "MyUrls.gif"
    insDoc(aux2, gLnk("R", "Download Page", "MyUrls_Download.html"))
 
  
    insDoc(foldersTree, gLnk("R", "Links", "links.html"))

 
