function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("aboutid", "About Ethan", "About Ethan",  null, null);
	menu.addItem("picturesid", "Pictures", "Pictures",  null, null);
	menu.addItem("reviewsid", "Reviews & Interviews", "Reviews & Interviews",  null, null);
	menu.addItem("recordingsid", "Recordings & Sounds", "Recordings & Sounds",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("aboutid", "Home", "Home",  "http://theatre-musical.com/ethanfreeman/english.html");
	menu.addSubItem("aboutid", "News", "News",  "http://theatre-musical.com/ethanfreeman/news.html");
	menu.addSubItem("aboutid", "Biography", "Biography",  "http://theatre-musical.com/ethanfreeman/biography.html");
	menu.addSubItem("aboutid", "Career Overview", "Career Overview",  "http://theatre-musical.com/ethanfreeman/careeroverview.html");
	menu.addSubItem("aboutid", "Fact File", "Fact File",  "http://theatre-musical.com/ethanfreeman/factfile.html");
        menu.addSubItem("aboutid", "F.A.Q.", "F.A.Q.", "http://theatre-musical.com/ethanfreeman/faq.html");

	menu.addSubItem("picturesid", "Beauty & the Beast", "Beauty & the Beast",  "http://theatre-musical.com/ethanfreeman/batbpics.html");
	menu.addSubItem("picturesid", "Elisabeth", "Elisabeth",  "http://theatre-musical.com/ethanfreeman/elisabethpics.html");
	menu.addSubItem("picturesid", "Jekyll & Hyde", "Jekyll & Hyde",  "http://theatre-musical.com/ethanfreeman/jandhpics.html");
	menu.addSubItem("picturesid", "Les Misérables", "Les Misérables",  "http://theatre-musical.com/ethanfreeman/lesmispics.html");
	menu.addSubItem("picturesid", "Mozart!", "Mozart!",  "http://theatre-musical.com/ethanfreeman/mozartpics.html");
	menu.addSubItem("picturesid", "Phantom of the Opera", "Phantom of the Opera",  "http://theatre-musical.com/ethanfreeman/phanpics.html");
	menu.addSubItem("picturesid", "Vom Geist der Weihnacht", "Vom Geist der Weihnacht",  "http://theatre-musical.com/ethanfreeman/geistpics.html");
	menu.addSubItem("picturesid", "Fan Pictures", "Fan Pictures",  "http://theatre-musical.com/ethanfreeman/fanpics.html");
	menu.addSubItem("picturesid", "Ethan Photos", "Ethan Photos",  "http://theatre-musical.com/ethanfreeman/newpics.html");
        menu.addSubItem("picturesid", "Ethan & Monika Photos", "Ethan & Monika Photos", "http://theatre-musical.com/ethanfreeman/ethanmonikapics.html");
	menu.addSubItem("picturesid", "Other", "Other",  "http://theatre-musical.com/ethanfreeman/otherpics.html");

	menu.addSubItem("reviewsid", "Site Reviews", "Site Reviews",  "http://theatre-musical.com/ethanfreeman/sitereviews.html");
	menu.addSubItem("reviewsid", "Newspaper/Magazine Articles", "Newspaper/Magazine Articles",  "http://theatre-musical.com/ethanfreeman/articles.html");
        menu.addSubItem("reviewsid", "TV Interviews", "TV Interviews",  "http://theatre-musical.com/ethanfreeman/tvinterviews.html");
	
	menu.addSubItem("recordingsid", "Cast Recordings", "Cast Recordings",  "http://theatre-musical.com/ethanfreeman/castrecordings.html");
	menu.addSubItem("recordingsid", "Jay Recordings", "Jay Recordings",  "http://theatre-musical.com/ethanfreeman/jayrecordings.html");
	menu.addSubItem("recordingsid", "Solo Recordings", "Solo Recordings", "http://theatre-musical.com/ethanfreeman/solorecordings.html");
	menu.addSubItem("recordingsid", "Other Recordings", "Other Recordings",  "http://theatre-musical.com/ethanfreeman/otherrecordings.html");
	menu.addSubItem("recordingsid", "Sound Studio", "Sound Studio",  "http://theatre-musical.com/ethanfreeman/soundstudio.html");

	menu.addSubItem("miscid", "Artwork", "Artwork",  "http://theatre-musical.com/ethanfreeman/artwork.html");
	menu.addSubItem("miscid", "Message Board", "Message Board",  "http://ethanfreeman.proboards.com");
        menu.addSubItem("miscid", "Mailing List", "Mailing List",  "http://www.egroups.com/group/ethanfreeman");
        menu.addSubItem("miscid", "Guestbook", "Guestbook",  "http://pub8.bravenet.com/guestbook/show.php?usernum=661645517&cpv=2");
        menu.addSubItem("miscid", "Links", "Links",  "http://theatre-musical.com/ethanfreeman/links.html");
	menu.addSubItem("miscid", "Webrings", "Webrings",  "http://theatre-musical.com/ethanfreeman/webrings.html");
	menu.addSubItem("miscid", "Fans for Kids", "Fans for Kids",  "http://theatre-musical.com/ethanfreeman/fansforkids.html");
        menu.addSubItem("miscid", "About the Site", "About the Site", "http://theatre-musical.com/ethanfreeman/site.html");

	menu.showMenu();
}