//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("homepageid", "HOME", "HOME",  null, null);
	menu.addItem("surnamesid", "Surnames", "Surnames",  null, null);
	menu.addItem("indexid", "Index", "Index",  null, null);
	menu.addItem("storiesid", "Biographical Sketches", "Biographical Sketches",  null, null);
	menu.addItem("trees", "Family Trees", "Descendancies",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

    menu.addSubItem("homepageid", "Leonard and Sons Home Page", "Leonard and Sons Home Page",  "http://home.comcast.net/~dreifuss1/lensgen/contents.htm", "");
	
	menu.addSubItem("surnamesid", "Surnames on these pages", "Find a Surname of Interest",  "http://home.comcast.net/~dreifuss1/lensgen/sur.htm", "");
	
	menu.addSubItem("indexid", "Index of names", "Find a Specific Person",  "http://home.comcast.net/~dreifuss1/lensgen/idx001.htm", "");
	
    menu.addSubItem("storiesid", "Karolina Hess", "Written by Leonard Dreifuss",  "http://home.comcast.net/~padreifuss/Karolina1.htm", "");
	menu.addSubItem("storiesid", "Chana Sora Czarnolaska", "Chana Sora by Jeff Dreifuss",  "http://home.comcast.net/~dreifuss1/ChanaSora.htm", "");
	menu.addSubItem("storiesid", "Wolf Kampinski", "Wolf Kampinski",  "http://home.comcast.net/~dreifuss1/kamp.htm", "");
	menu.addSubItem("trees", "Benedict & Sarah Baum Hess & Their Descendants", "Benedict & Sarah Baum Hess & Their Descendants",  "http://home.comcast.net/~padreifuss/BenedictHess.htm", "");
	menu.addSubItem("trees", "Descendants of Lejbus Wasserman", "Descendants of Lejbus Wasserman",  "http://home.comcast.net/~padreifuss/Lejbus.htm", "");
	menu.addSubItem("trees", "Origins and Descendants of Eugenie Bloch", "Bloch Family Tree",  "http://home.comcast.net/~dreifuss1/BlochOrig.htm", "");
	menu.addSubItem("miscid", "Origin of the DREIFUSS name", "Origin of the DREIFUSS name",  "http://home.comcast.net/~dreifuss1/NamePage.htm", "");
	
	menu.addSubItem("miscid", "Ancestral Towns", "Ancestral Towns",  "http://members.aol.com/petedr/Frame3a.html", "");
	menu.addSubItem("miscid", "Danville Pennsylvania: The Selinsgrove Connection", "My Familys Immigration to Pennsylvania (1868-1875)",  "http://home.comcast.net/~dreifuss1/Selins.htm", "");
	menu.addSubItem("miscid", "Rediscovering A Jewish Community", "The Danville, PA Jewish Community",  "http://home.comcast.net/~padreifuss/RediscoveringJewishComm.htm", "");
	menu.addSubItem("miscid", "The Schmeiheim Jewish Cemetery", "The Schmeiheim Jewish Cemetery",  "http://members.aol.com/petedr/Schmieheim.html", "");
    menu.addSubItem("miscid", "CONTACT US", "CONTACT US",  "http://home.comcast.net/~dreifuss1/lensgen/contents.htm#CNTC", "");
	menu.addSubItem("miscid", "Guest Book", "Please Leave a Note in the Guest Book",  "http://home.comcast.net/cgi-bin/GBEntry?owner=dreifuss1", "");
	
	menu.showMenu();
}