//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", "About NHS","About NHS",null, null);
	menu.addItem("pp", "Policies & Procedures", "Policies & Procedures", null, null);
	menu.addItem("calendars", "Calendars", "Calendars",  null, null);	
	menu.addItem("students", "For Students", "For Students", null, null);	
	menu.addItem("transportation", "Transportation", "Transportation",  null, null);
	menu.addItem("departments", "Departments", "Departments",  null, null);	
	menu.addItem("faculty", "Faculty & Staff", "Faculty & Staff",  null, null);
	
	menu.addSubItem("home", "About NHS", "About NHS",  "aboutnhs.htm", "");
	menu.addSubItem("home", "NHS Mission", "NHS Mission",  "mission.htm", "");
	menu.addSubItem("home", "NHS Home", "NHS Home",  "index.htm", "");
	menu.addSubItem("home", "ACPS Home", "ACPS Home",  "http://www.sbac.edu", "");
	menu.addSubItem("home", "SIP", "SIP",  "", "");
	
	
	
	menu.addSubItem("pp", "Dress Code", "Dress Code",  "docs/DressCode-Secondary.pdf", "");
	menu.addSubItem("pp", "Attendance", "Attendance",  "attendance.htm", "");
	menu.addSubItem("pp", "Grading", "Grading",  "grading.htm", "");
	menu.addSubItem("pp", "Student Handbook", "Student Handbook",  "docs/NHSStudentHandbook08-09.pdf", "");
	menu.addSubItem("pp", "Cell Phone", "Cell Phone",  "docs/cell2010.pdf", "");
	menu.addSubItem("pp", "Bus Schedules", "Bus Schedule",  "http://www.sbac.edu/~irfs/trans_home.htm", "");
	

	menu.addSubItem("calendars", "2009-2010 Schools", "2009-2010 Schools",  "http://www2.sbac.edu/~wpops/calendar/09-10schcal.pdf", "");
	menu.addSubItem("calendars", "NHS Events", "NHS Events",  "schedule.htm", "");
	menu.addSubItem("calendars", "Bell Schedule", "Bell Schedule",  "bellsched.htm", "");
	menu.addSubItem("calendars", "Testing", "Testing",  "http://www.sbac.edu/~research/TestingCalendar.html", "");
	menu.addSubItem("calendars", "Tutoring", "Tutoring",  "tutoring.htm", "");
	

	menu.addSubItem("students", "Senior Project", "Senior Project",  "http://web.me.com/hollandcynthia82/Site_3/Welcome.html", "");
	menu.addSubItem("students", "Reading List", "Reading List",  "summerread.htm", "");

	menu.addSubItem("departments", "All Departments", "All Departments",  "departments.htm", "");
	menu.addSubItem("departments", "English and Reading", "English and Reading",  "english.htm", "");
	menu.addSubItem("departments", "Math", "Math",  "math.htm", "");
	menu.addSubItem("departments", "Science", "Science", "science.htm", "");
	menu.addSubItem("departments", "Social Studies", "Social Studies", "socstudies.htm", "");
	menu.addSubItem("departments", "Academy of Criminal Justice", "Academy of Criminal Justice", "cj/criminalj.htm", "");
	menu.addSubItem("departments", "Career & Technical Education", "Career & Technical Education", "careertech.htm", "");
	menu.addSubItem("departments", "Media", "Media", "Media Center/index.htm", "");
	menu.addSubItem("departments", "Spanish", "Spanish", "spanish.htm", "");
	menu.addSubItem("departments", "ESE", "ESE", "ese.htm", "");
	menu.addSubItem("departments", "Guidance", "Guidance",  "Guidance/newsite/index.htm", "");
	menu.addSubItem("departments", "Physical Education", "Physical Education",  "physed.htm", "");
	menu.addSubItem("departments", "Athletics", "Athletics",  "athletics.htm", "");
	menu.addSubItem("departments", "Clubs", "Clubs",  "clubs.htm", "");
	
	menu.addSubItem("transportation", "By Bus", "By Bus",  "http://www2.sbac.edu/~irfs/School_Routes.htm", "");
	menu.addSubItem("transportation", "NHS Activity Bus", "NHS Activity Bus",  "docs/activitySchedule.pdf", "");
	
	menu.addSubItem("faculty", "Administration", "Administration",  "admin.htm", "");
	menu.addSubItem("faculty", "Faculty & Staff", "Faculty & Staff",  "faculty.htm", "");	
	

	menu.showMenu();
}