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

	menu = new Menu();
	menu.addItem("homeid", "Main", "Home Pages",  null, null);
	menu.addItem("catid", "Catalogue", "Catalogue",  null, null);
	menu.addItem("gamesid1", "Pinball Machine Sales", "Pinball Machines",  null, null);
	menu.addItem("accessid", "Spares & Accessories", "Spares & Parts for sale", null, null);
	menu.addItem("techid2", "Technical Information", "Technical Information",  null, null);
	menu.addItem("contid", "Contact Us", "Contact Us",  null, null);
	
	menu.addSubItem("accessid", "Enter Online Shop", "Shop online!", "shop/index.php?cPath=26", "");
	menu.addSubItem("homeid", "HOME Pinball Heaven UK", "UK site",  "http://www.pinballheaven.co.uk/index.htm", "");
	menu.addSubItem("homeid", "HOME Pinball Heaven USA", "USA Site",  "http://www.pinballheaven.co.uk/PinballHeavenUSA", "");
	menu.addSubItem("homeid", "News", "News",  "news.htm", "");
	menu.addSubItem("homeid", "Table of Contents", "TOC",  "toc.htm", "");
	menu.addSubItem("homeid", "Links", "Other sites",  "sites.htm", "");
	menu.addSubItem("homeid", "Read customer reviews", "customers", "http://groups.google.com/groups?q=pinball+heaven+group%3Arec.games.pinball&btnG=Google+Search&hl=en&lr=&safe=off", "");
	


	menu.addSubItem("catid", "Terms and Conditions", "Terms",  "terms.htm", "");
	menu.addSubItem("catid", "Guarantee/Warranty", "Guarantee",  "guarant.htm", "");
	menu.addSubItem("catid", "Quality Assurance", "Quality",  "Quality.htm", "");
	menu.addSubItem("catid", "Opening Times", "Opening Times",  "opentim.htm", "");
	menu.addSubItem("catid", "Delivery and setting up your machine", "Delivery and setting up your machine",  "delivery.htm", "");
	menu.addSubItem("catid", "Did you know ?", "Did you know ?",  "diduno.htm", "");
	menu.addSubItem("catid", "Frequently asked questions", "Frequently asked questions",  "FAQ.htm", "");
	menu.addSubItem("catid", "Looking after your pin table", "Looking after your pin table",  "looking.htm", "");
	menu.addSubItem("catid", "How to connect Flipper coils", "How to connect Flipper coils",  "connect.htm", "");
	menu.addSubItem("catid", "ROM revisions", "ROMs",  "eproms.htm", "");
	menu.addSubItem("catid", "Tech Bulletins", "Tech Bulletins",  "bulletin.htm", "");
	menu.addSubItem("catid", "Tech Articles", "Tech Articles",  "tech.htm", "");
	menu.addSubItem("catid", "Manuals", "Manuals", "manuals.htm", "");
	menu.addSubItem("catid", "Manual Scans", "Manual Scans", "manualscans.htm", "");
	menu.addSubItem("catid", "Call outs/On site Work", "Call outs/On site Work", "callout.htm", "");
	menu.addSubItem("catid", "Repairs to your machine", "Repars to your machine", "repair.htm", "");
	menu.addSubItem("catid", "Board repairs", "Board repairs", "boardrepairs.htm", "");

	menu.addSubItem("gamesid1", "Williams Games", "Williams Games", "shop/index.php?cPath=22_21", "");
	menu.addSubItem("gamesid1", "Bally Games", "Bally Games", "shop/index.php?cPath=22_23", "");
	menu.addSubItem("gamesid1", "Data East Games", "Data East Games", "shop/index.php?cPath=22_24", "");
	menu.addSubItem("gamesid1", "Stern Games", "Stern Games", "shop/index.php?cPath=22_25", "");
	
	menu.addSubItem("techid2", "Cleaning your Pinball Machine", "Clean your pinball machine", "clean.htm", "");
	menu.addSubItem("techid2", "The Creature from the Black Lagoon", "The Creature from the Black Lagoon",  "creature.htm", "");
	menu.addSubItem("techid2", "WPC L.E.D's explained", "WPC L.E.D's explained", "leds.htm", "");
	menu.addSubItem("techid2", "Manual Scans", "Manual Scans", "manualscans.htm", "");
	menu.addSubItem("techid2", "Coin Doors", "Coin Doors", "coin.htm", "");
	menu.addSubItem("techid2", "Star Trek : TNG", "Star Trek : TNG", "trekbul.htm", "");
	menu.addSubItem("techid2", "GetaWay", "GetaWay", "getabul.htm", "");
	menu.addSubItem("techid2", "Essential Tools", "Essential Tools", "essential.htm", "");
	menu.addSubItem("techid2", "Coil/Flash lamp problems", "Coil/Flash lamp problems", "coil.htm", "");
	menu.addSubItem("techid2", "Looking after your table", "Looking after your table", "looking.htm", "");
	menu.addSubItem("techid2", "How to connect flipper coils", "How to connect flipper coils", "connect.htm", "");
	menu.addSubItem("techid2", "Dead Pinball ?", "Dead Pinball ?", "deadp.htm", "");
	menu.addSubItem("techid2", "Tips and tricks", "Tips and tricks", "tips.htm", "");
	menu.addSubItem("techid2", "Eproms", "Eproms", "eproms.htm", "");
	menu.addSubItem("techid2", "Hurricane Bulletin", "Hurricane", "hurricanebul.htm", "");
	
	menu.addSubItem("contid", "Contact Details", "Contact Details", "contact.htm", "");
	menu.addSubItem("contid", "Survey", "Complete our Survey", "survey.htm", "");
	menu.addSubItem("contid", "Email Enquiries", "Email Us",  "mailto:enquiries@pinballheaven.co.uk", "");
	menu.addSubItem("contid", "Email Sales", "Email Us",  "mailto:sales@pinballheaven.co.uk", "");
	

	menu.showMenu();
}

