function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Our Site", "Our Site",  null, null);
	menu.addItem("newsid", "Bibliography", "Bibliography",  null, null);
	menu.addItem("freedownloadid", "About Us", "About Us",  null, null);
	menu.addItem("searchengineid", "Photo Album", "Photo Album",  null, null);
	menu.addItem("miscid", "Fun Links", "Fun Links",  null, null);

	menu.addSubItem("webmasterid", "Our Lastest Hot Drawing!", "Our Latest Hot Drawing!", "../index1.html#drawing");
	menu.addSubItem("webmasterid", "Biography", "Biography",  "../bio/index.htm");
        menu.addSubItem("webmasterid", "Signing/Conference Schedule", "Signing/Conference Schedule",  "../index1.html#schedule");
	menu.addSubItem("webmasterid", "Fun Links", "Fun Links",  "../hotlinks/index.html");
	menu.addSubItem("webmasterid", "Sign Our Guestbook", "Sign Our Guestbook",  "../guestbook.html");
	menu.addSubItem("webmasterid", "Join Our Announcement List!", "Join Our Announcement List!",  "http://www.egroups.com/subscribe/toricarrington");
	menu.addSubItem("webmasterid", "Join Our E-Mail Loop!", "Join Our E-Mail Loop!",  "ToriCarringtonFriends-subscribe@yahoogroups.com");
	menu.addSubItem("webmasterid", "Greek Page", "Greek Page",  "../foreign/greek/index.htm");
	
	menu.addSubItem("newsid", "Full Back & Current List", "Full Back & Current List",  "../bibliography.htm");
	menu.addSubItem("newsid", "Foreign Editions", "Foreign Editions",  "../foreign/index.htm");
	menu.addSubItem("newsid", "Greek Page", "Greek Page",  "../foreign/greek/index.htm");
		
	menu.addSubItem("freedownloadid", "Biography", "Biography",  "../bio/index.htm");
	menu.addSubItem("freedownloadid", "Bibliography", "Bibliography",  "../bibliography.htm");
	menu.addSubItem("freedownloadid", "Press Release", "Press Release",  "../bio/pressrelease.htm");
	menu.addSubItem("freedownloadid", "Signing/Chat/Conference Schedule", "Signing/Chat/Conference Schedule",  "../index1.html#schedule");
	 menu.addSubItem("freedownloadid", "News Archives/Workshop Handouts/Articles", "News Archives/Workshop Handouts/Articles",  "../bio/news/newspieces.htm");

	menu.addSubItem("searchengineid", "Family", "Family", "../familyalbum/bookish.html");
	menu.addSubItem("searchengineid", "Our Latest Trip to Greece", "Our Latest Trip to Greece", "../family2/index.htm");
        	menu.addSubItem("searchengineid", "Latest travel pics!", "Latest travel pics!",  "../familyalbum/bookish.html");

	menu.addSubItem("miscid", "eHarlequin.com", "eHarlequin.com",  "http://www.eharlequin.com");
	menu.addSubItem("miscid", "Amazon.com", "Amazon.com",  "http://www.amazon.com");
	menu.addSubItem("miscid", "Romantic Times", "Romantic Times",  "http://www.romantictimes.com");
	menu.addSubItem("miscid", "Belles & Beaux of Romance", "Belles & Beaux of Romance",  "http://www.geocities.com/bellesandbeaux");
	menu.addSubItem("miscid", "Maumee Valley RWA", "Maumee Valley RWA",  "http://members.aol.com/mvrwa/index.htm");
	menu.addSubItem("miscid", "Full List of Favs!", "Full List of Favs!",  "../hotlinks/index.html");


	menu.showMenu();
}