//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("home", "Home", "Home",  "/index.htm", null);
	menu.addItem("school", "Johnson School", "Johnson School",  null, null);
	menu.addItem("periwinkle", "Periwinkle Preschool", "Periwinkle Preschool", null, null);
	menu.addItem("political", "Political Bodies", "Political Bodies",  null, null);
	menu.addItem("miscid", "Guest Book", "Guest Book",  "/guestbook/underconstruction.asp", null);

	menu.addSubItem("home", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");
	menu.addSubItem("home", "JavaScript Kit", "JavaScript Kit",  "http://www.javascriptkit.com/", "");
	menu.addSubItem("home", "Web Review", "Web Review",  "http://www.webreview.com/", "");
	menu.addSubItem("home", "Freewarejava.com", "Freewarejava.com",  "http://www.freewarejava.com/", "_blank");
	menu.addSubItem("home", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/", "_blank");

	menu.addSubItem("school", "Main Page", "Main Page",  "/johnson_school/johnson_main.asp", "");
	menu.addSubItem("school", "Superintenent", "Superintenent",  "/johnson_school/super/super_main.asp", "");
	menu.addSubItem("school", "Principal", "Principal",  "/johnson_school/principal/principal_main.asp", "");
	menu.addSubItem("school", "School Calendar", "School Calendar",  "/johnson_school/calendar/calendar.asp", "");
	menu.addSubItem("school", "Classrooms/Academia", "Classrooms/Academia",  "http://www.schoolnotes.com", "_blank");
	menu.addSubItem("school", "Student Handbook", "Student Handbook",  "/johnson_school/handbook/handbook.asp", "");
	menu.addSubItem("school", "Nurse's Office", "Nurse's Office",  "/johnson_school/nurse/nurse_main.asp", "");

	menu.addSubItem("periwinkle", "Periwinkle Preschool", "Periwinkle Preschool", "http://www.periwinklepreschool.org", "_blank");
	
	menu.addSubItem("political", "PTO", "PTO",  "/pto/pto_main.asp", "");
	menu.addSubItem("political", "School Council", "School Council",  "/schoolcouncil/councilhome.asp", "");
	menu.addSubItem("political", "School Committee", "School Committee", "/schoolcommittee/school_committee_main.asp", "");

	menu.addSubItem("miscid", "Sign", "sign",  "/sign.asp", "");
	menu.addSubItem("miscid", "read", "read",  "/view.asp", "");
	
	menu.showMenu();
}
