//
// 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 Grain Malts", "javascript:undefined"))
    aux2 = insFld(aux1, gFld("About Us", "http://www.muntons.com/muntons_malt/aboutus.asp"))
    aux2 = insFld(aux1, gFld("Listening", "http://www.muntons.com/muntons_malt/listening.asp"))
	aux2 = insFld(aux1, gFld("People", "http://www.muntons.com/muntons_malt/people.asp"))
	aux2 = insFld(aux1, gFld("Sales & Markets", "http://www.muntons.com/muntons_malt/sales_markets.asp"))
	aux2 = insFld(aux1, gFld("Key Values", "http://www.muntons.com/muntons_malt/key_values.asp"))
	aux2 = insFld(aux1, gFld("Investment", "http://www.muntons.com/muntons_malt/investment.asp"))
	
aux1 = insFld(foldersTree, gFld("Barley", "http://www.muntons.com/muntons_malt/barley/default.asp"))
aux1 = insFld(foldersTree, gFld("Quality, Traceability & Assurance", "http://www.muntons.com/muntons_malt/quality.asp"))
aux1 = insFld(foldersTree, gFld("Locations", "http://www.muntons.com/muntons_malt/locations.asp"))
aux1 = insFld(foldersTree, gFld("How Malt Is Made", "http://www.muntons.com/howmaltismade/malt/default_malt.htm"))
aux1 = insFld(foldersTree, gFld("Typical Analysis", "http://www.muntons.com/muntons_malt/typical_analysis/alemalt.asp"))
aux1 = insFld(foldersTree, gFld("Tech Support", "http://www.muntons.com/muntons_malt/tech_support.asp"))
aux1 = insFld(foldersTree, gFld("Useful Links", "http://www.muntons.com/muntons_malt/useful_links.asp"))
aux1 = insFld(foldersTree, gFld("Contact", "http://www.muntons.com/contact/malt.asp"))
   
aux1 = insFld(foldersTree, gFld("Other Divisions", "javascript:undefined"))
    aux2 = insFld(aux1, gFld("Malted Ingredients", "http://www.muntons.com/mmi/default.asp"))
    aux2 = insFld(aux1, gFld("Home Beer", "http://www.muntons.com/homebeer/default.asp"))

aux1 = insFld(foldersTree, gFld("Malt Home", "http://www.muntons.com/muntons_malt/default.asp"))
aux1 = insFld(foldersTree, gFld("Site Map", "http://www.muntons.com/site_map.asp"))


