function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("main", "Samis Grotto", "Samis Info",  null, null);
	menu.addItem("movper", "MOVPER", "About the Grotto",  null, null);
	menu.addItem("links", "Links", "Masonic Links",  null, null);
	
	menu.addSubItem("main", "Calendar", "Calendar",  "calendar.htm");
	menu.addSubItem("main", "Map", "Where are you",  "map.htm");
	menu.addSubItem("main", "Our Officers", "Officers",  "officers.htm");
	menu.addSubItem("main", "Hall Rental", "Rent the Grotto",  "rental.htm");
	menu.addSubItem("main", "Clown Unit", "Clowning Around",  "clowns.htm");
	menu.addSubItem("main", "Our Ladies", "Ladies Auxilliary",  "ladies.htm");
	menu.addSubItem("main", "Home", "Home",  "index.htm");
	menu.addSubItem("main", " ", " ",  "index.htm");

	menu.addSubItem("movper", "What is the GROTTO", "MOVPER!",  "grotto.htm");
	menu.addSubItem("movper", "Supported Charities", "Helping Others.",  "charity.htm");
	menu.addSubItem("movper", "Join", "Ask One",  "join.htm");
	menu.addSubItem("movper", "Home", "Home",  "index.htm");
	menu.addSubItem("movper", " ", " ",  "index.htm");

	menu.addSubItem("links", "Blue Lodge Links", "Our Roots",  "lodgelinks.htm");
	menu.addSubItem("links", "Grotto Links", "Grotto Websites",  "grottolinks.htm");	
	menu.addSubItem("links", "Home", "Home",  "index.htm");
	menu.addSubItem("links", " ", " ",  "index.htm");

	menu.showMenu();
}

