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!", "../index.html#drawing");
	menu.addSubItem("webmasterid", "Bibliography", "Bibliography",  "../books/index.htm");
	menu.addSubItem("webmasterid", "Biography", "Biography",  "../bio/index.htm");
        menu.addSubItem("webmasterid", "Signing/Conference Schedule", "Signing/Conference Schedule",  "../index.html#schedule");
	menu.addSubItem("webmasterid", "Photo Journal", "Photo Journal",  "../hotpics/FrameSet1.htm");
	menu.addSubItem("webmasterid", "Free Goodies!", "Free Goodies!",  "../freebies/index.htm");
	menu.addSubItem("webmasterid", "Fun Links", "Fun Links",  "../hotlinks/index.htm");
	menu.addSubItem("webmasterid", "Sign Our Guestbook", "Sign Our Guestbook",  "../guestbook/index.htm");
	menu.addSubItem("webmasterid", "Join Our On-Line Mailing List!", "Join Our On-Line Mailing List!",  "http://www.egroups.com/subscribe/toricarrington");
	
	menu.addSubItem("newsid", "Constant Craving", "Constant Craving",  "../excerpt/excerpt.html");
	menu.addSubItem("newsid", "The Magnificent McCoy Men Men - License to Thrill", "The Magnificent McCoy Men - License to Thrill",  "../excerpt/excerpt2.htm");
	menu.addSubItem("newsid", "The Magnificent McCoy Men Men - The P.I. Who Loved Her", "The Magnificent McCoy Men - The P.I. Who Loved Her",  "../piexcerpt/index.htm");
	menu.addSubItem("newsid", "The Magnificent McCoy Men Men - For Her Eyes Only", "The Magnificent McCoy Men - For Her Eyes Only",  "../eyes/index.htm");
	menu.addSubItem("newsid", "Just Eight Months Old....", "Just Eight Months Old....",  "../index.html#excerpt");
	
	menu.addSubItem("freedownloadid", "Biography", "Biography",  "../bio/index.htm");
	menu.addSubItem("freedownloadid", "Press Release", "Press Release",  "../press/index.htm");
        menu.addSubItem("freedownloadid", "Signing/Conference Schedule", "Signing/Conference Schedule",  "../index.html#schedule");
        menu.addSubItem("freedownloadid", "Workshop Handouts", "Workshop Handouts",  "../handouts/index.htm");
	menu.addSubItem("freedownloadid", "Articles", "Articles",  "../articles/index.htm");

	menu.addSubItem("searchengineid", "Signing Mania!", "Signing Mania!",  "../hotpics/FrameSet1.htm");
	menu.addSubItem("searchengineid", "Conference Schmoozes", "Conference Schmoozes",  "../hotpics/index.htm");
	menu.addSubItem("searchengineid", "Family & Friends", "Family & Friends", "../family/index.htm");
	menu.addSubItem("searchengineid", "Greece", "Greece",  "../athens/index.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();
}