function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("aboutomi", "About Omicron", "About Omicron",  null, null);
	menu.addItem("workshops", "Workshops", "Workshops",  null, null);
	menu.addItem("parts", "Parts Department", "Parts Department",  null, null);
	menu.addItem("links", "Lancia Links", "Lancia Links",  null, null);
	menu.addItem("carsforsale", "Cars for Sale", "Cars for Sale",  null, null);
	menu.addItem("fun", "Lancia Fun!", "Lancia Fun!",  null, null);

	menu.addSubItem("aboutomi", "Company Profile", "Company Profile", "pr-omic.html");
	menu.addSubItem("aboutomi", "Our Staff", "Our Staff", "omistaff.html");
	menu.addSubItem("aboutomi", "Classic & Sportscar", "Classic & Sportscar", "pr-cc897.html");
	menu.addSubItem("aboutomi", "What's an Omicron", "What's an Omicron", "omitruck.html");
	menu.addSubItem("aboutomi", "The Long Barn", "The Long Barn", "omi-barn.html");
	menu.addSubItem("aboutomi", "Rapid Rescues", "Rapid Rescues", "omiresc.html");

	menu.addSubItem("workshops", "Overview", "Overview", "omi-rest.html");
	menu.addSubItem("workshops", "Engine", "Engine", "omi-engn.html");
	menu.addSubItem("workshops", "Mechanical", "Mechanical", "omi-mech.html");
	menu.addSubItem("workshops", "Bodywork", "Bodywork", "omi-body.html");
	menu.addSubItem("workshops", "Trimming", "Trimming", "omi-trim.html");
	menu.addSubItem("workshops", "Competition Preparation", "Competition preparation", "omi-comp.html");
	menu.addSubItem("workshops", "Other Services", "Other Services", "services.html");
	menu.addSubItem("workshops", "Engine Machining", "Engine Machining", "machine.html");

	menu.addSubItem("parts", "How to order", "How to Order",  "omiorder.html");
	menu.addSubItem("parts", "Books & gifts", "Books & gifts",  "omi-bok.html");
	menu.addSubItem("parts", "Exhaust systems", "Exhaust systems",  "exhausts.html");
	menu.addSubItem("parts", "Sports Brakes", "Sports Brakes",  "brakes.html");	
	menu.addSubItem("parts", "Body seals", "Body seals", "bodyseals.html");	
	menu.addSubItem("parts", "Stickers / Decals", "Stickers / Decals", "stickers.html");	
	menu.addSubItem("parts", "", "",  "");
	menu.addSubItem("parts", "Aprilia and earlier", "Aprilia and earlier",  "omi-oldr.html");
	menu.addSubItem("parts", "Aurelia", "Aurelia",  "omi-aur.html");
	menu.addSubItem("parts", "Flaminia", "Flaminia",  "omi-flam.html");
	menu.addSubItem("parts", "Flavia & 2000", "Flavia & 2000",  "omi-flav.html");
	menu.addSubItem("parts", "Fulvia", "Fulvia",  "omi-fulv.html");
	menu.addSubItem("parts", "Stratos", "Stratos",  "omi-sos.html");
	menu.addSubItem("parts", "Beta and newer", "Beta & newer",  "omi-otr.html");
	menu.addSubItem("parts", "", "",  "");
	menu.addSubItem("parts", "Special Offers", "Special offers",  "omioffer.html");
	menu.addSubItem("parts", "Enquiry form", "Enquiry form",  "enquiry.html");
	menu.addSubItem("parts", "Catalogue Request", "Catalogue Request",  "catalog.html");

	menu.addSubItem("links", "Lancia Italy", "Lancia Italy",  "http://www.lancia.com");
	menu.addSubItem("links", "Lancia Mailing List", "Lancia mailing list",  "lanclist.html");
	menu.addSubItem("links", "Vincenzo Lancia ", "Vincenzo Lancia",  "vincenzo.html");
	menu.addSubItem("links", "Holiday Cottages", "Holiday Cottages",  "holiday.html");
	menu.addSubItem("links", "Lancia imports", "Lancia imports", "omi-lanc.html");
	menu.addSubItem("links", "other car imports ", "other car imports",  "import.html");
	menu.addSubItem("links", "Lancia Racing", "Lancia Racing",  "http://www.lanciaracing.co.uk");

	menu.addSubItem("carsforsale", "* Cars for Sale *", "* Cars for Sale *",  "../php/phpclassifieds/index.php");

	menu.addSubItem("fun", "Lancia Fun!", "Lancia Fun!",  "omi-fun.html");
	menu.addSubItem("fun", "Special Bolts", "Special Bolts",  "omi-bolt.html");
	menu.addSubItem("fun", "Ginger Beer!", "Ginger Beer!",  "g-beer.html");
	menu.addSubItem("fun", "Quiz", "Quiz",  "omi-quiz.html");
	menu.addSubItem("fun", "Lancias of 2005", "Lancias of 2005",  "lan2005.html");

	menu.showMenu();
}