function showToolbar()
{
mstyle = new MenuStyle();
mstyle.bgColor="#660033";
mstyle.mainMenuBorder=1;
mstyle.subMenuBorder=0;
mstyle.subMenuWidth=180;
mstyle.menuDelta = 3; // distance between mainmenu and submenu
mstyle.clsMenuItemIE = "class=clsMenuItemIE";
mstyle.clsMenuItemNS = "class=clsMenuItemNS";
mstyle.bMenuStatic = 1;
mstyle.mainMenuWidth = "100%";

menu = new Menu(mstyle);
menu.addItem("Major", "Main pages",null,null, null);
menu.addItem("br", "Bareroot lists",null,  null, null);
menu.addItem("MO", "Mail Order",null,  null, null);
menu.addItem("LL", "Summer Mail Order",null,  null, null);
menu.addItem("cg", "Container lists",null,  null, null);
menu.addItem("pf", "Perennial Flowers",null,  null, null);
menu.addItem("rel", "Projects & Features",null,  null, null);      	

menu.addSubItem("Major", "Home page",null,  "default.htm");
menu.addSubItem("Major", "Search this site",null,  "search.htm");
menu.addSubItem("Major", "Plants by mail order", null,  "how_to.htm");	
menu.addSubItem("Major", "Photos of Future Forests", null,  "futurephotos.htm");
menu.addSubItem("Major", "Our Craft Shop", null,  "craft.htm");
menu.addSubItem("Major", "How to find us",null,  "location.htm");	
menu.addSubItem("Major", "Events",null,  "events.htm");		
menu.addSubItem("Major", "Email us",null,  "mailto:futureforests@eircom.net");	
	
menu.addSubItem("br", "Broadleaved trees A-K",null,   "br_broadleaf_a.htm");
menu.addSubItem("br", "Broadleaved trees L-Z",null,   "br_broadleaf_h.htm");
menu.addSubItem("br", "Willow",null,  "br_willow.htm");      
menu.addSubItem("br", "Conifers", null,  "br_conifers.htm");
menu.addSubItem("br", "Hedging",null,    "br_hedging.htm");
menu.addSubItem("br", "Ferns and Grasses",null,    "ferns&grasses.htm");
menu.addSubItem("br", "Shrubs A-G", null,  "br_shrubs_a.htm");
menu.addSubItem("br", "Shrubs H-Z", null,  "br_shrubs_h.htm");

menu.addSubItem("br", "Ground Cover Plants and Climbers",null,  "summergc.htm");
menu.addSubItem("br", "Roses",null, "br_roses.htm");
menu.addSubItem("br", "Fruit and nuts",null, "br_fruit.htm");
menu.addSubItem("br", "Taller Broadleaf Trees",null, "taller_trees.htm");
menu.addSubItem("br", "Taller Conifers",null, "taller_conifers.htm");
                  
menu.addSubItem("MO", "Information on mail order",null, "how_to.htm");

menu.addSubItem("LL", "General Information",null, "su_general.htm");
menu.addSubItem("LL", "Trees and Shrubs",null, "su_shrubs.htm");
menu.addSubItem("LL", "Conifers",null, "su_conifers.htm");
menu.addSubItem("LL", "Ground Cover and Climbers ",null, "summergc.htm");
menu.addSubItem("LL", "Ferns and Grasses",null, "ferns&grasses.htm");
menu.addSubItem("LL", "Hedging",null, "su_hedging.htm");
menu.addSubItem("LL", "Special Offers",null, "specials.htm");
                
menu.addSubItem("cg", "Shrubs A-K", null,  "cg_shrubs_a.htm");
menu.addSubItem("cg", "Shrubs L-Z",null,  "cg_shrubs_l.htm");
menu.addSubItem("cg", "Broadleaved trees",null,  "cg_broadleaf.htm");
menu.addSubItem("cg", "Conifers",null,  "cg_conifers.htm");
menu.addSubItem("cg", "Climbers",null,"cg_climbers.htm");
menu.addSubItem("cg", "Ferns and grasses",null,  "cg_ferns.htm");
menu.addSubItem("cg", "Waterplants",null,  "cg_water.htm");  
menu.addSubItem("cg", "Bamboos & Exotics",null,  "cg_Bamboo.htm");
menu.addSubItem("cg", "Fruit",null,"cg_fruit.htm");
menu.addSubItem("cg", "Hedging",null,"cg_hedging.htm");

menu.addSubItem("pf", "all Perennials A to Z",null,  "cg_perennials.htm");
menu.addSubItem("pf", "Alpine & Rockery perennials", null, "PFrockery&alpines.htm");
menu.addSubItem("pf", "Perennials for Damp ground", null, "PFdamp.htm");
menu.addSubItem("pf", "Dry shade Perennials", null, "PFdryshade.htm");
menu.addSubItem("pf", "Seaside Perennials", null, "PFseaside.htm");
menu.addSubItem("pf", "Wildflower Collection", null, "PFwildflower.htm");

		
menu.addSubItem("rel", "Chelsea Flower Show 2002", null,  "chelsea2002.htm");
menu.addSubItem("rel", "Mallow Show 1999",null,  "mallow.htm");
menu.addSubItem("rel", "Ethiopian connections", null,  "christy_in_ethiopia.htm"); 
menu.addSubItem("rel", "The Elm Project", null,  "elmproject.htm"); 
menu.addSubItem("rel", "Events", null,  "events.htm"); 

menu.showMenu();
}