//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("homeid", "HOME", "HOME",  "http://www.ldcsb.on.ca/schools/smhs/index.html");
	menu.addItem("generalinformationid", "General Information", "General Information",  null, null);
	menu.addItem("departmentsid", "Departments", "Departments",  null, null);
	menu.addItem("studentid", "Student Information", "Student Information",  null, null);
	menu.addItem("resourcesid", "Resources", "Resources",  null, null);

	menu.addSubItem("generalinformationid", "School Board", "School Board",  "http://www.ldcsb.on.ca");
	menu.addSubItem("generalinformationid", "School Profile/History", "School Profile/History",  "history.html");
	menu.addSubItem("generalinformationid", "Principal's Statement", "Principal's Statement",  "principal.html");
	menu.addSubItem("generalinformationid", "Staff", "Staff",  "staff.html");
	menu.addSubItem("generalinformationid", "Catholic Education", "Catholic Education",  "catholiced.html");
	menu.addSubItem("generalinformationid", "Daily Schedules", "Daily Schedules",  "schedules.html");
	menu.addSubItem("generalinformationid", "Student Events", "Student Events", "activities.html");
	menu.addSubItem("generalinformationid", "Student Council", "Student Council", "council.html");
	menu.addSubItem("generalinformationid", "Newsletters", "Newsletters", "newsletters.html");
	menu.addSubItem("generalinformationid", "Clubs & Activities", "Clubs & Activities", "Clubs&ActivitiesDec308.pdf");
	menu.addSubItem("generalinformationid", "Parent and School Council", "Parent and School Council", "pasc.html");
	menu.addSubItem("generalinformationid", "School Productions/Shows", "School Productions/Shows", "prodshows.html");

	menu.addSubItem("departmentsid", "Arts", "Arts", "arts.html");
	menu.addSubItem("departmentsid", "Athletics", "Athletics",  "athletics.html");
	menu.addSubItem("departmentsid", "Business/Co-op", "Business/Co-op",  "business.html");
	menu.addSubItem("departmentsid", "Canadian & World Studies/Social Sciences & Humanities", "Canadian & World Studies/Social Sciences & Humanities",  "cwsha.html");
	menu.addSubItem("departmentsid", "Chaplaincy/Social Justice", "Chaplaincy/Social Justice",  "chaplaincy.html");
	menu.addSubItem("departmentsid", "English", "English",  "english.html");
	menu.addSubItem("departmentsid", "Guidance", "Guidance",  "guidance.html");
	menu.addSubItem("departmentsid", "Languages", "Languages",  "languages.html");
	menu.addSubItem("departmentsid", "Learning Services", "Learning Services",  "learningservices.html");
	menu.addSubItem("departmentsid", "Library", "Library",  "http://www.ldcsb.on.ca/schools/smhs/library/index.htm");
	menu.addSubItem("departmentsid", "Mathematics", "Mathematics",  "math.html");
	menu.addSubItem("departmentsid", "Physical Education", "Physical Education",  "physed.html");
	menu.addSubItem("departmentsid", "Religious Studies", "Religious Studies",  "religion.html");
	menu.addSubItem("departmentsid", "Science", "Science",  "science.html");
	menu.addSubItem("departmentsid", "Technology", "Technology",  "tech.html");

	menu.addSubItem("studentid", "Catholic Secondary School Graduate Expectations", "Catholic Secondary School Graduate Expectations",  "expectations.html");
	menu.addSubItem("studentid", "Student Agenda/Handbook", "Student Agenda/Handbook",  "studhand.html");
	menu.addSubItem("studentid", "Parking Registration Form", "Parking Registration Form",  "ParkingRegistrationForm0910v1.pdf");

	menu.addSubItem("resourcesid", "Alumni", "Alumni",  "alumni.html");
	menu.addSubItem("resourcesid", "Memorial Peace Garden", "Memorial Peace Garden",  "mempeace.html");
	menu.addSubItem("resourcesid", "Links", "Links",  "links.html");
	menu.addSubItem("resourcesid", "School Tour", "School Tour", "tour.html");

	menu.showMenu();
}