//
// 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>Home</b>", "index.php")
  foldersTree.treeID = "Frameless"
  aux1 = insFld(foldersTree, gFld("Art            ", "javascript:undefined"))
    insDoc(aux1, gLnk("B", "New Work(marck.tv)", "http://www.marck.tv"))
    insDoc(aux1, gLnk("S", "Old Work", "altekunst.php"))
  foldersTree.treeID = "Frameless"
  aux2 = insFld(foldersTree, gFld("Mulimedia", "javascript:undefined"))
    insDoc(aux2, gLnk("S", "Videos & Jingle", "film.php"))
    insDoc(aux2, gLnk("S", "CD-rom/DVD", "dvd.php"))
    insDoc(aux2, gLnk("S", "Point of Information", "kiosksystem.php"))
    insDoc(aux2, gLnk("S", "Webseiten", "webseiten.php"))
    insDoc(aux2, gLnk("S", "Illustrationen", "illus.php"))
    insDoc(aux2, gLnk("S", "Reportagen,foto,film,text", "fotospresse.php"))
  
  foldersTree.treeID = "Frameless"
  aux3 = insFld(foldersTree, gFld("Bauen/Einrichten", "javascript:undefined"))
    insDoc(aux3, gLnk("S", "Specials", "specials.php"))    
    insDoc(aux3, gLnk("S", "Innenausbau", "innenbau.php"))
    insDoc(aux3, gLnk("S", "Möbel", "moebel.php"))
    insDoc(aux3, gLnk("S", "Loftausbau", "loft.php"))
    insDoc(aux3, gLnk("S", "Küchen", "kuechen.php"))
    insDoc(aux3, gLnk("S", "Renovationen", "renovationen.php"))
    insDoc(aux3, gLnk("S", "Provisorium", "provisorium.php"))
    insDoc(aux3, gLnk("S", "Dächer", "dach.php"))
    insDoc(aux3, gLnk("S", "Eisenarbeiten", "eisen.php"))
    insDoc(aux3, gLnk("S", "Trockenbau", "Trockenbau.php"))
    
 aux4 = insFld(foldersTree, gFld("Webtools,Links,Downloads", "javascript:undefined"))
    insDoc(aux4, gLnk("S", "Sitemap", "sitemap.php"))
    insDoc(aux4, gLnk("S", "Downloads", "downloads.php"))
    insDoc(aux4, gLnk("S", "Webtools", "medien_stuff.php"))
    insDoc(aux4, gLnk("S", "Partner", "partnerlinks.php"))
    insDoc(aux4, gLnk("S", "Links", "links.php"))
    insDoc(aux4, gLnk("B", "Meberlogin", "member/index.htm"))

 aux5 = insFld(foldersTree, gFld("Über MARCK", "javascript:undefined"))
    insDoc(aux5, gLnk("S", "Biographie", "bio.php"))
    insDoc(aux5, gLnk("S", "Kunden", "kunden.php"))
	insDoc(aux5, gLnk("S", "Pressespiegel", "pressspiegel.php"))
 aux6 = insFld(foldersTree, gFld("Kontakt", "kontakt.php"))
    

//insDoc(aux2, gLnk("S", "Boston", "demoFrameless.html?pic=%22beenthere_boston%2Ejpg%22"))
//      insDoc(aux2, gLnk("S", "Tiny pic of New York City", "demoFrameless.html?pic=%22beenthere_newyork%2Ejpg%22"))
//      insDoc(aux2, gLnk("S", "Washington", "demoFrameless.html?pic=%22beenthere_washington%2Ejpg%22"))
//    aux2 = insFld(aux1, gFld("Europe", "demoFrameless.html?pic=%22beenthere_europe%2Egif%22"))
//      insDoc(aux2, gLnk("S", "London", "demoFrameless.html?pic=%22beenthere_london%2Ejpg%22"))
//      insDoc(aux2, gLnk("S", "Lisbon", "demoFrameless.html?pic=%22beenthere_lisbon%2Ejpg%22"))
//  aux1 = insFld(foldersTree, gFld("Types of node", "javascript:undefined"))
//    aux2 = insFld(aux1, gFld("Expandable with link", "demoFrameless.html?pic=%22beenthere_europe%2Egif%22"))
//      insDoc(aux2, gLnk("S", "London", "demoFrameless.html?pic=%22beenthere_london%2Ejpg%22"))
//    aux2 = insFld(aux1, gFld("Expandable without link", "javascript:undefined"))
//      insDoc(aux2, gLnk("S", "NYC", "demoFrameless.html?pic=%22beenthere_newyork%2Ejpg%22"))
//    insDoc(aux1, gLnk("B", "Opens in new window", "http://www.treeview.net/treemenu/demopics/beenthere_pisa.jpg"))
