function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("company", "Phil's Rotarys Info", "info", null);
	menu.addItem("bodyparts", "Parts - The Looks", "Body Parts", null, "http://www.philsrotarys.com.au/bodyparts/bodyparts.html");
	menu.addItem("mechparts", "Parts - The Moves", "Mechanical Parts", null, "http://www.philsrotarys.com.au/mechparts/mechparts.html");
	menu.addItem("carsales", "Phil's Car Sales", null, "http://www.philsrotarys.com.au/carsales/carsales.html", null);

	menu.addSubItem("company", "Contact Us", null, "http://www.philsrotarys.com.au/contactus.html");
	menu.addSubItem("company", "Phil's News", null, "http://www.philsrotarys.com.au/news/news.html");
	menu.addSubItem("company", "Phil's Links", null, "http://www.philsrotarys.com.au/links.html");

	menu.addSubItem("bodyparts", "RX2", null,  "http://www.philsrotarys.com.au/bodyparts/rx2/rx2.html");
	menu.addSubItem("bodyparts", "RX3", null,  "http://www.philsrotarys.com.au/bodyparts/rx3/rx3.html");
	menu.addSubItem("bodyparts", "RX4", null,  "http://www.philsrotarys.com.au/bodyparts/rx4/rx4.html");
	menu.addSubItem("bodyparts", "RX5", null,  "http://www.philsrotarys.com.au/bodyparts/rx5/rx5.html");
	menu.addSubItem("bodyparts", "RX7", null,  "http://www.philsrotarys.com.au/bodyparts/rx7/rx7.html");

	menu.addSubItem("mechparts", "Complete Engines", null, "http://www.philsrotarys.com.au/mechparts/engines/engines.html");
	menu.addSubItem("mechparts", "Fuel Systems", null, "http://www.philsrotarys.com.au/mechparts/fuelsystems/fuelsystems.html");
	menu.addSubItem("mechparts", "Drivetrain Parts", null, "http://www.philsrotarys.com.au/mechparts/drivechain/drivetrain.html");
	menu.addSubItem("mechparts", "Suspension", null, "http://www.philsrotarys.com.au/mechparts/suspension/suspension.html");
	menu.addSubItem("mechparts", "Electronics", null, "http://www.philsrotarys.com.au/mechparts/electronics/electronics.html");




	menu.showMenu();
}
