//
// 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>", "http://www.muntons.com")
  foldersTree.treeID = "Frameless"
aux1 = insFld(foldersTree, gFld("About Us", "javascript:undefined"))
    aux2 = insFld(aux1, gFld("Introduction", "http://www.muntons.com/mmi/introduction.asp"))
    aux2 = insFld(aux1, gFld("Sales & Markets", "http://www.muntons.com/mmi/sales_markets.asp"))
	aux2 = insFld(aux1, gFld("Facilities", "http://www.muntons.com/mmi/facilities.asp"))
	aux2 = insFld(aux1, gFld("People", "http://www.muntons.com/mmi/people.asp"))
	aux2 = insFld(aux1, gFld("World Class Malt", "http://www.muntons.com/mmi/world_class_malt.asp"))
	
aux1 = insFld(foldersTree, gFld("Products", "http://www.muntons.com/mmi/products/default.asp"))
aux1 = insFld(foldersTree, gFld("Applications", "http://www.muntons.com/mmi/applications/default.asp"))
aux1 = insFld(foldersTree, gFld("Support", "http://www.muntons.com/mmi/support.asp"))
   
aux1 = insFld(foldersTree, gFld("The Bakery", "javascript:undefined"))
    aux2 = insFld(aux1, gFld("Introduction", "http://www.muntons.com/bakery/default.asp"))
    aux2 = insFld(aux1, gFld("Recipes", "http://www.muntons.com/bakery/recipes.asp"))
	aux2 = insFld(aux1, gFld("Calculator", "http://www.muntons.com/bakery/calculator.asp"))
    aux2 = insFld(aux1, gFld("Glossary", "http://www.muntons.com/glossary/glossary_bakery.asp"))

aux1 = insFld(foldersTree, gFld("TFC", "http://www.muntons.com/mmi/tfc.asp"))

aux1 = insFld(foldersTree, gFld("Channel Partners", "javascript:undefined"))
    aux2 = insFld(aux1, gFld("Agents", "http://www.muntons.com/mmi/agents.asp"))
    aux2 = insFld(aux1, gFld("Agents Newsletter", "http://www.muntons.com/mmi/agents_nl1.asp"))
	
aux1 = insFld(foldersTree, gFld("Making Malted Ingredients", "http://www.muntons.com/howmaltismade/malted_ingredients/default_mmi.htm"))
aux1 = insFld(foldersTree, gFld("Glossary", "http://www.muntons.com/glossary/glossary_technical.asp"))
aux1 = insFld(foldersTree, gFld("Useful Links", "http://www.muntons.com/mmi/useful_links.asp"))
aux1 = insFld(foldersTree, gFld("Contact", "http://www.muntons.com/contact/mmi.asp"))

aux1 = insFld(foldersTree, gFld("Other Divisions", "javascript:undefined"))
    aux2 = insFld(aux1, gFld("Muntons Malt", "http://www.muntons.com/muntons_malt/default.asp"))
    aux2 = insFld(aux1, gFld("Home Beer", "http://www.muntons.com/homebeer/default.asp"))
	
aux1 = insFld(foldersTree, gFld("Site Map", "http://www.muntons.com/site_map.asp"))





