//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("webmasterid", "Home", "Home",  "index.html", "");
	menu.addItem("newsid", "About", "About",  null, null);
	menu.addItem("freedownloadid", "Funding", "Funding",  "funding.html", "");
	menu.addItem("searchengineid", "Guestbook", "Guestbook",  null, null);
	menu.addItem("miscid", "Contacts", "Contacts",  "contacts.html", "");

	menu.addSubItem("newsid", "Overview", "Overview",  "overview.html", "");
	menu.addSubItem("newsid", "Mission & Purpose", "Mission & Purpose",  "mission.html", "");
	
	menu.addSubItem("searchengineid", "View Entries", "View Entries",  "http://www.htmlgear.tripod.com/guest/control.guest?u=gs633&i=1&a=view", "");
	menu.addSubItem("searchengineid", "Add an Entry", "Add an Entry",  "http://htmlgear.tripod.com/guest/control.guest?a=sign&u=gs633&i=1&r=", "");
	menu.showMenu();
}