//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("homeid", "Homepage", "Homepage",  null, null);
	menu.addItem("studentsid", "Student Info", "Student Info",  null, null);
	menu.addItem("parentsid", "Parent Info", "Parent Info",  null, null);
	menu.addItem("teachersid", "Teacher Info", "Teacher Info",  null, null);
	menu.addItem("nursessid", "Nurses's Desk", "Nurses's Desk",  null, null);
	menu.addItem("studentworkid", "Students' Work", "Students' Work",  null, null);
	menu.addItem("classroomsid", "Classroom Webpages", "Classroom Webpages",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("homeid", "Go Back", "Go Back",  "homepage.htm", "");
	
	menu.addSubItem("studentsid", "Computer Lab Quiz", "Computer Lab Quiz",  "computer_lab_quiz.htm", "");
	menu.addSubItem("studentsid", "Educational Games & Resources", "Educational Games & Resources",  "education_resources_05.htm", "");
	menu.addSubItem("studentsid", "Great Books 4 Kids", "Great Books 4 Kids",  "booksforkids.htm", "");
	menu.addSubItem("studentsid", "Literacy Web Sites for Kids", "Literacy Web Sites for Kids",  "literacywebsitesforkids.htm", "");
	menu.addSubItem("studentsid", "Lunch Art Enrichment Schedule", "Lunch Art Enrichment Schedule",  "artenrichmentschedule.htm", "");
	menu.addSubItem("studentsid", "Lunch Computer Enrichment Schedule", "Lunch Computer Enrichment Schedule",  "computerenrichmentschedule.htm", "");
	menu.addSubItem("studentsid", "Lunch Music Enrichment Schedule", "Lunch Music Enrichment Schedule",  "musicenrichmentschedule.htm", "");
	menu.addSubItem("studentsid", "Homework Help", "Homework Help",  "HomeworkHelp.htm", "");
	menu.addSubItem("studentsid", "Educational Games & Search Engines", "Educational Games & Search Engines",  "funNgames.htm", "");
	menu.addSubItem("studentsid", "School Rules", "School Rules",  "SchoolRules.htm", "");

	menu.addSubItem("parentsid", "Educational Resources Online", "Educational Resources Online",  "education_resources_05.htm", "");
	menu.addSubItem("parentsid", "Educational Games & Search Engines", "Educational Games & Search Engines",  "funNgames.htm", "");
	menu.addSubItem("parentsid", "Reminders", "Reminders",  "REMINDERS.htm", "");
	menu.addSubItem("parentsid", "Parent Resources", "Parent Resources",  "ParentResources.htm", "");
	menu.addSubItem("parentsid", "School Calendar", "School Calendar",  "school_cal_feb_12.htm", "");
	menu.addSubItem("parentsid", "Email A Teacher", "Email A Teacher",  "email_a_teacher.htm", "");
	menu.addSubItem("parentsid", "Fund Raising", "Fund Raising",  "FundRaisers.htm", "");
	menu.addSubItem("parentsid", "New Jersey Department of Education", "New Jersey Department of Education",  "http://www.state.nj.us/education/", "_blank");
	menu.addSubItem("parentsid", "School Schedules", "School Schedules",  "school_schedules.htm", "");	
	menu.addSubItem("parentsid", "Parent Portal", "Parent Portal",  "parent_portal.htm", "");
	
	menu.addSubItem("teachersid", "Educational Games & Resources", "Educational Games & Resources",  "education_resources_05.htm", "");
	menu.addSubItem("teachersid", "Educational Resources", "Educational Resources", "EducationalResources.htm", "");
	menu.addSubItem("teachersid", "Email A Teacher", "Email A Teacher", "email_a_teacher.htm", "");
	menu.addSubItem("teachersid", "Teacher Websites", "Teacher Websites", "teacher_websites.htm", "");
	menu.addSubItem("teachersid", "School Calendar", "School Calendar", "school_cal_feb_12.htm", "");
	menu.addSubItem("teachersid", "Literacy Web Sites for Teachers", "Literacy Web Sites for Teacher", "literacywebsitesforteachers.htm", "");
	menu.addSubItem("teachersid", "Faculty", "Faculty", "TeachersLogin.htm", "");
	menu.addSubItem("teachersid", "Web 2.0", "Web 2.0", "web_2.0_oct_07.htm", "");
	menu.addSubItem("teachersid", "School Schedules", "School Schedules", "school_schedules.htm", "");

	menu.addSubItem("nursessid", "Nurse's Desk", "Nurse's Desk", "nurses_desk.htm", "");
	
	menu.addSubItem("studentworkid", "Library Art Show 2010", "Library Art Show 2010", "library_slideshow_05.htm", "");
	menu.addSubItem("studentworkid", "Second Grade Projects", "Second Grade Projects", "powerpoint_second_grade.htm", "");
	menu.addSubItem("studentworkid", "Third Grade Projects", "Third Grade Projects", "powerpoint_third_grade.htm", "");
	menu.addSubItem("studentworkid", "Fourth Grade Projects", "Fourth Grade Projects", "powerpoint_fourth_grade.htm", "");
	menu.addSubItem("studentworkid", "Fifth Grade Projects", "Fifth Grade Projects", "powerpoint_fifth_grade.htm", "");

	menu.addSubItem("classroomsid", "Teacher Websites", "Teacher Websites", "teacher_websites.htm", "");
	menu.addSubItem("classroomsid", "Specialist Teacher Websites", "Specialist Teacher Websites", "teacher_specialists_websites.htm", "");
	menu.addSubItem("classroomsid", "Administrative", "Administrative", "teacher_adminstrative_websites.htm", "");

	menu.addSubItem("miscid", "Online Dictionary and Thesaurus", "Online Dictionary and Thesaurus",  "http://dictionary.reference.com/", "_blank");
	menu.addSubItem("miscid", "Online Translator", "Online Translator",  "http://www.freetranslation.com/", "_blank");
	menu.addSubItem("miscid", "District Website", "District Website",  "http://www.garfield.k12.nj.us/", "_blank");
	menu.addSubItem("miscid", "Garfield Public Library", "Garfield Public Library",  "http://www.bccls.org/garfield/", "_blank");

	menu.showMenu();
}


