//
// 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("Flours & Flakes", "javascript:undefined"))
    aux2 = insFld(aux1, gFld("Light Malt Flour", "http://www.muntons.com/mmi/products/flours_flakes.asp#light"))
    aux2 = insFld(aux1, gFld("Roasted Malt Flour", "http://www.muntons.com/mmi/products/flours_flakes.asp#roasted"))
	aux2 = insFld(aux1, gFld("Kibbled & Flaked", "http://www.muntons.com/mmi/products/flours_flakes.asp#kibbled"))
	aux2 = insFld(aux1, gFld("Blends & Mixes", "http://www.muntons.com/mmi/products/flours_flakes.asp#blends"))
	
   
aux1 = insFld(foldersTree, gFld("Liquid Malt & Cereal Extracts", "javascript:undefined"))
    aux2 = insFld(aux1, gFld("Liquid Malt Extracts", "http://www.muntons.com/mmi/products/liquid_malt_cereal_extracts.asp"))
    aux2 = insFld(aux1, gFld("Specialist Cereal Extracts", "http://www.muntons.com/mmi/products/specialist_cereal_extract.asp"))

aux1 = insFld(foldersTree, gFld("Dried Extracts", "javascript:undefined"))
    aux2 = insFld(aux1, gFld("Spraymalts", "http://www.muntons.com/mmi/products/dried_extract.asp"))
    aux2 = insFld(aux1, gFld("Vacuum Band Dried", "http://www.muntons.com/mmi/products/dried_extract.asp#vacuum"))

	
aux1 = insFld(foldersTree, gFld("Applications", "http://www.muntons.com/mmi/applications/default.asp"))
aux1 = insFld(foldersTree, gFld("Typical Analysis", "http://www.muntons.com/mmi/typical_analysis.asp"))

aux1 = insFld(foldersTree, gFld("Main MMI Menu", "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("Site Map", "http://www.muntons.com/site_map.asp"))






