//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("excerptsid", "Excerpts", "Excerpts",  null, null);
	menu.addItem("publisherid", "Publishers", "Publishers",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("excerptsid", "Shadow of the Mountain", "Shadow of the Mountain",  "http://hp-h.us/b/wrbenton/shadow%20excerpt.htm", "");
	menu.addSubItem("excerptsid", "Red Runs the Plains", "Red Runs the Plains",  "http://hp-h.us/b/wrbenton/plains%20excerpt.htm", "");
	menu.addSubItem("excerptsid", "Southern Humor", "Southern Humor",  "http://hp-h.us/b/wrbenton/dawg%20excerpt.htm", "");
	menu.addSubItem("excerptsid", "Simple Survival Guide", "Simple Survival Guide",  "http://hp-h.us/b/wrbenton/survival%20excerpt.htm", "_blank");
	menu.addSubItem("excerptsid", "Ty Fisher", "Ty Fisher",  "http://hp-h.us/b/wrbenton/fisher%20blood%20excerpt.htm", "_blank");

	menu.addSubItem("publisherid", "Emerald Ink", "Emerald Ink",  "http://www.emeraldink.com", "");
	menu.addSubItem("publisherid", "TreeSide Press", "TreeSide Press",  "http://www.treesidepress.ca", "");
	menu.addSubItem("publisherid", "Publish America", "Publish America",  "http://www.publishamerica.com", "");
	menu.addSubItem("publisherid", "Book Publishers Listing", "Book Publishers Listing",  "http://www.bookpublishingandpublishers.com/book/publishingandpublishers/", "");
	menu.addSubItem("publisherid", "Fultus", "Fultus",  "http://fultus.com/", "");
	menu.addSubItem("publisherid", "No Spine", "No Spine",  "http://nospine.net", "");

	menu.addSubItem("linksid", "Simple Survival", "Simple Survival",  "http://www.wrbenton.com/", "");
	menu.addSubItem("linksid", "Ty Fisher", "Ty Fisher",  "http://westernbooks.we.funpic.org/", "");
	menu.addSubItem("linksid", "Western Books", "Western Books",  "http://wrbenton.wr.funpic.org/", "");

	menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/", "");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/", "");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com", "");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com", "");

	menu.addSubItem("miscid", "Tri-Studio Authors", "Tri-Studio Authors",  "http://www.tri-studio.com/", "");
	menu.addSubItem("miscid", "Wing Haven", "Wing Haven",  "http://www.winghavenwesterns.com/", "");
	menu.addSubItem("miscid", "A.H. Holt", "A.H. Holt",  "http://www.ahholt.com/", "");

	menu.showMenu();
}