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("bioid", "BIO & PHOTOS", "Bio & Photos.",  null, null);
	menu.addItem("blogid", "BLOG", "Blog.",  null, null);
	menu.addItem("booksid", "BOOKS", "Books.",  null, null);
	menu.addItem("contestsid", "CONTESTS", "Contests.",  null, null);
	menu.addItem("emailid", "EMAIL", "Email.", null, null);
	menu.addItem("faqsid", "FAQS", "FAQs.",  null, null);
	menu.addItem("guestid", "GUESTBOOK", "Guestbook.",  null, null);
	menu.addItem("newsletterid", "NEWSLETTER", "Newsletter.",  null, null);
	menu.addItem("sitemapid", "SITEMAP", "Sitemap.",  null, null);
	menu.addItem("whatsnewid", "WHAT'S NEW", "What's new.",  null, null);

	menu.addSubItem("homeid", "Home", "Home.",  "../index.html");
	menu.addSubItem("bioid", "Bio & Photos", "Bio & Photos.",  "../castle/gallery.html");
	menu.addSubItem("blogid", "Blog", "Blog.",  "../weblog/weblog.html");

	menu.addSubItem("booksid", "Backlist", "Backlist.",  "../village/bookshop.html");
	menu.addSubItem("booksid", "New Titles", "New Titles.",  "../castle/library.html");

	menu.addSubItem("contestsid", "Contests", "Contests.",  "../castle/billiardroom.html");
	menu.addSubItem("emailid", "Email", "Email.",  "../village/postoffice.html");
	menu.addSubItem("faqsid", "FAQs", "FAQs.",  "../castle/study.html");
	menu.addSubItem("guestid", "Guestbook", "Guestbook.", "../castle/receptionhall.html");
 	menu.addSubItem("newsletterid", "Newsletter", "Newsletter.",  "../village/herald.html");
	menu.addSubItem("sitemapid", "Sitemap", "Sitemap.",  "../castle/gatehouse.html#sitemap");
	menu.addSubItem("whatsnewid", "What's New", "What's new.",  "../village/villagegreen.html");

	menu.showMenu();
}

