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

	menu = new Menu();
	menu.addItem("realmsid", "HOME", "Home.",  null, null);
	menu.addItem("infoid", "ACTIVITIES & INFORMATION", "Activities & Information.",  null, null);
	menu.addItem("booksid", "BOOKS", "Books.",  null, null);
	menu.addItem("castle1id", "CASTLE (GL)", "Castle (Ground Level).",  null, null);
	menu.addItem("castle2id", "CASTLE (UL)", "Castle (Upper Level).",  null, null);
	menu.addItem("castle3id", "CASTLE (LL)", "Castle (Lower Level).",  null, null);
	menu.addItem("groundsid", "GROUNDS", "Grounds.",  null, null);
	menu.addItem("sacredwellid", "SACRED WELL", "Sacred Well.",  null, null);
	menu.addItem("villageid", "VILLAGE", "Village.",  null, null);

	menu.addSubItem("realmsid", "Home", "Home.",  "../index.html");

	menu.addSubItem("infoid", "Bio & Photos", "Bio & Photos.",  "../castle/gallery.html");
	menu.addSubItem("infoid", "Blog",  "Blog.",  "../weblog/weblog.html");
	menu.addSubItem("infoid", "Chat", "Chat.",  "../village/pub.html");
	menu.addSubItem("infoid", "Contests", "Contests.",  "../castle/billiardroom.html");
	menu.addSubItem("infoid", "Email", "Email.",  "../village/postoffice.html");
	menu.addSubItem("infoid", "FAQs", "FAQs.",  "../castle/study.html");
	menu.addSubItem("infoid", "Guestbook", "Guestbook.",  "../castle/receptionhall.html");
	menu.addSubItem("infoid", "Newsletter", "Newsletter.",  "../village/herald.html");
	menu.addSubItem("infoid", "Polls", "Polls.",  "../grounds/joustingfield.html");
	menu.addSubItem("infoid", "Sitemap", "Sitemap.",  "../castle/gatehouse.html#sitemap");
	menu.addSubItem("infoid", "Webmaster", "Webmaster.",  "mailto:webmaster@brandewyne.com");
	menu.addSubItem("infoid", "Webrings", "Webrings.",  "../webrings/webrings.html");
	menu.addSubItem("infoid", "What's New", "What's New.",  "../village/villagegreen.html");
	menu.addSubItem("infoid", "Writing Tips", "Writing Tips.",  "../castle/treasury.html");
	
	menu.addSubItem("booksid", "Backlist", "Backlist.",  "../village/bookshop.html");
	menu.addSubItem("booksid", "New Titles", "New Titles.",  "../castle/library.html");

	menu.addSubItem("castle1id", "Castle", "Castle.",  "../castle/castle.html");
	menu.addSubItem("castle1id", "Gatehouse", "Gatehouse.",  "../castle/gatehouse.html");
	menu.addSubItem("castle1id", "Entrance Hall", "Entrance Hall.",  "../castle/entrancehall.html");
	menu.addSubItem("castle1id", "Reception Hall", "Reception Hall.",  "../castle/receptionhall.html");
	menu.addSubItem("castle1id", "Gallery", "Gallery.",  "../castle/gallery.html");
	menu.addSubItem("castle1id", "Library", "Library.",  "../castle/library.html");
	menu.addSubItem("castle1id", "Study", "Study.",  "../castle/study.html");
	menu.addSubItem("castle1id", "Billiard Room", "Billiard Room.",  "../castle/billiardroom.html");
	menu.addSubItem("castle1id", "Ballroom", "Ballroom.",  "../castle/ballroom.html");
	menu.addSubItem("castle1id", "Minstrel Gallery", "Minstrel Gallery.",  "../castle/minstrel.html");
	menu.addSubItem("castle1id", "Dining Hall", "Dining Hall.",  "../castle/dininghall.html");
	menu.addSubItem("castle1id", "Kitchen", "Kitchen.",  "../castle/kitchen.html");
	menu.addSubItem("castle1id", "Drawing Room", "Drawing Room.",  "../castle/drawingroom.html");
	menu.addSubItem("castle1id", "Music Room", "Music Room.",  "../castle/musicroom.html");
	menu.addSubItem("castle1id", "Morning Room", "Morning Room.",  "../castle/morningroom.html");
	menu.addSubItem("castle1id", "Conservatory", "Conservatory.",  "../castle/conservatory.html");
	menu.addSubItem("castle1id", "Gardens", "Gardens.",  "../castle/gardens.html");
	menu.addSubItem("castle1id", "Crusades", "Crusades.",  "../castle/crusades.html");

	menu.addSubItem("castle2id", "Master Bedroom", "Master Bedroom.",  "../castle/bedroom.html");
	menu.addSubItem("castle2id", "Master Bath", "Master Bath.",  "../castle/bath.html");
	menu.addSubItem("castle2id", "Wardrobe", "Wardrobe.",  "../castle/wardrobe.html");

	menu.addSubItem("castle3id", "Treasury", "Treasury.",  "../castle/treasury.html");
	menu.addSubItem("castle3id", "Passages", "Passages.",  "../castle/passages.html");
	menu.addSubItem("castle3id", "Wine Cellar", "Wine Cellar.",  "../castle/winecellar.html");
	
	menu.addSubItem("groundsid", "Grounds", "Grounds.",  "../grounds/grounds.html");
		
	menu.addSubItem("sacredwellid", "Sacred Well", "Sacred Well.",  "../sacredwell/sacredwell.html");

	menu.addSubItem("villageid", "Village", "Village.",  "../village/village.html");

	menu.showMenu();
}