//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("history", "Family History", "Hackley & Ridgway History",  "history.htm");
	menu.addItem("famous", "Family Connections", "Famous Virginia Relatives",  "famous.htm");
	menu.addItem("surname", "Other Surnames", "Primary Surname Biographies",  null, null);	
	menu.addItem("data", "On-Line Database", "On-Line Database",  "database/index.html");
	menu.addItem("info", "Information", "Information",  null, null);

	menu.addSubItem("surname", "Clapsaddle", "Clapsaddle Bio",  "clapsadl.htm");
	menu.addSubItem("surname", "Schaefer", "Wissmann & Schaefer Bio",  "wissmann.htm");
	menu.addSubItem("surname", "Wissmann", "Wissmann & Schaefer Bio",  "wissmann.htm");

	menu.addSubItem("info", "Background", "Research & Web Site Design",  "personal.htm");
	menu.addSubItem("info", "Contact Author", "Email Vince Hackley",  "mailto:rockfish@cyberrealm.net");

	menu.showMenu();
}
