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

	menu = new Menu();
	menu.addItem("homeid", "HOME", "Home.",  null, null);
	menu.addItem("infoid", "ACTIVITIES & INFORMATION", "Activities & Information.",  null, null);
	menu.addItem("booksid", "BOOKS", "Books.",  null, null);
	menu.addItem("castleid", "CASTLE", "Castle.",  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("homeid", "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("castleid", "Castle", "Castle.",  "../castle/castle.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();
}