function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("clubinfo", "Club Information", "Club Information",  null, null);
	menu.addItem("ukdiving", "UK Diving", "UK Diving",  null, null);
	menu.addItem("howto", "How To...", "How To...",  null, null);
	menu.addItem("expeds", "Expeditions", "Expeditions",  null, null);
	menu.addItem("contact", "Club Contacts", "Club Contacts",  null, null);
	menu.addItem("links", "Top Links", "Top Links",  null, null);

	menu.addSubItem("clubinfo", "Home Page", "Home Page",  "index2.htm");
	menu.addSubItem("clubinfo", "Who Are We?", "Who Are We?",  "who.htm");
	menu.addSubItem("clubinfo", "Where Are We?", "Where Are We?",  "where.htm");
	menu.addSubItem("clubinfo", "Club Training", "Club Training",  "training.htm");
	menu.addSubItem("clubinfo", "Club News", "Club News",  "news.htm");

	menu.addSubItem("ukdiving", "Diving In the UK", "Diving In The UK",  "ukdiving.htm");
	menu.addSubItem("ukdiving", "Coastal Sites", "Coastal Sites",  "ukdiving.htm#coastal");
	menu.addSubItem("ukdiving", "Inland Sites", "Inland Sites",  "ukdiving.htm#quarries");
	menu.addSubItem("ukdiving", "UK Wreck Search", "UK Wreck Search",  "search.htm");
	menu.addSubItem("ukdiving", "UK Wreck Lookup", "UK Wreck Lookup",  "lookup/sfx_index.htm");
	menu.addSubItem("ukdiving", "Favourite Wrecks", "Favourite Wrecks",  "wrecks/favourite.htm");
  
	menu.addSubItem("howto", "...Dive Safely", "...Dive Safely",  "howto/howto1.htm");
	menu.addSubItem("howto", "...Dive Enjoyably", "...Dive Enjoyably",  "howto/howto2.htm");
	menu.addSubItem("howto", "...Choose The Right Kit", "...Choose The Right Kit",  "howto/howto3.htm");
	menu.addSubItem("howto", "...Buy & Maintain Your Kit", "...Buy & Maintain Your Kit",  "howto/howto4.htm");
	menu.addSubItem("howto", "...Plan & Marshall a Dive", "'...Plan and Marshall a Dive",  "howto/howto5.htm");
	menu.addSubItem("howto", "...Plan & Marshall a RIB Dive", "...Plan and Marshall a RIB Dive",  "howto/howto6.htm");
	menu.addSubItem("howto", "...Run Dives", "...Run Dives",  "howto/howto7.htm");
	menu.addSubItem("howto", "...Get the Most from the Club", "...Get the Most from the Club",  "howto/howto8.htm");

	menu.addSubItem("expeds", "Club Expeditions Abroad", "Club Expeditions Abroad",  "expeds/expeds.htm");
	menu.addSubItem("expeds", "Sicily 2000", "Sicily 2000",  "expeds/sicily00.htm");
	menu.addSubItem("expeds", "Red Sea 1999", "Red Sea 1999",  "expeds/redsea99.htm");
	menu.addSubItem("expeds", "Red Sea 1998", "Red Sea 1998",  "expeds/redsea98.htm");
	menu.addSubItem("expeds", "Isles of Scilly 1998", "Isles of Scilly 1998",  "expeds/scilly98.htm");
	menu.addSubItem("expeds", "Talybont 1997", "Talybont 1997",  "expeds/taly97.htm");
	menu.addSubItem("contact", "Email the Club", "Email The Club",  "contacts.htm");
	menu.addSubItem("contact", "Feedback Form", "Feedback Form",  "feedback.htm");

	menu.addSubItem("links", "Full Links Page", "Full Links Page",  "links.htm");
	menu.addSubItem("links", "British Sub-Aqua Club", "British Sub-Aqua Club",  "http://www.bsac.org/");
	menu.addSubItem("links", "DiverNet", "DiverNet",  "http://www.divernet.com/");
	menu.addSubItem("links", "Diving-UK", "Diving-UK",  "http://www.diving-uk.com/");
	menu.addSubItem("links", "Met Office (Inshore)", "Met Office (Inshore)",  "http://www.meto.govt.uk/datafiles/inshore.html");

	menu.showMenu();
}
