//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",  "http://www.talithakumi.org", "");
	menu.addItem("webmasterid", "School History", "School History",  null, null);
	menu.addItem("newsid", "Sections", "School Sections",  null, null);
	menu.addItem("freedownloadid", "School Community", "School Community",  null, null);
	menu.addItem("searchengineid", "News And Activities", "News And Activities",  null, null);
	menu.addItem("miscid", "Distance Learning", "Distance Learning",  null, null);
	menu.addItem("email", "E-mail System", "E-mail System",  null, null);

	menu.addSubItem("webmasterid", "Between 1850 and 1950", "Between 1850 and 1950",  "Between1850-1950.html", "");
	menu.addSubItem("webmasterid", "Between 1950 and 1975", "Between 1950 and 1975",  "Between1950-1975.html", "");
	menu.addSubItem("webmasterid", "Between 1975 and 1982", "Between 1975 and 1982",  "Between1975-1982.html", "");
	menu.addSubItem("webmasterid", "Between 1983 and 1995", "Between 1983 and 1995",  "Between1983-1995.htm", "");
	menu.addSubItem("webmasterid", "Between 1995 and 2004", "Between 1995 and 2004",  "Between1995-2004.htm", "");
	menu.addSubItem("webmasterid", "School Today & in Future", "School Today & in Future",  "school-future.htm", "");

	menu.addSubItem("newsid", "Kindergarten", "Kindergarten",  "kindergarten.htm", "");
	menu.addSubItem("newsid", "School", "School",  "school.htm", "");
	menu.addSubItem("newsid", "Community College", "Community College",  "college.htm", "");
	menu.addSubItem("newsid", "Boarding Section", "Boarding Section",  "boardingsection.htm", "");
	menu.addSubItem("newsid", "Environmental Center", "Environmental Center",  "environmental_center.htm", "");
	menu.addSubItem("newsid", "Guest House", "Guest House",  "Guest house.html", "");
	menu.addSubItem("newsid", "Talitha Scout", "Talitha Scout",  "Scout.htm", "");
	menu.addSubItem("newsid", "Places in The School", "Places in The School",  "Other Sections.html", "");

	menu.addSubItem("freedownloadid", "Students", "Students",  "students.htm", "");
	menu.addSubItem("freedownloadid", "Teachers", "Teachers",  "teachers.htm", "");
	menu.addSubItem("freedownloadid", "Administration", "Administration",  "administration.htm", "");
	menu.addSubItem("freedownloadid", "Other Employees", "Other Employees",  "other_employees.htm", "");

	menu.addSubItem("searchengineid", "Open School Day", "Open Day",  "openday.htm", "");
	menu.addSubItem("searchengineid", "Graduation 2005", "Graduation 2005", "Graduation.htm", "");
		
	menu.addSubItem("miscid", "Classrooms and Subjects", "Classrooms and Subjects",  "Classes distance learning.htm", "");
	menu.addSubItem("miscid", "School Timetable", "School Timetable",  "Time Table.html", "");
	menu.addSubItem("miscid", "Educational Sites", "Educational Sites",  "http://www.mp3.com/", "");
	
	menu.addSubItem("email", "Check your email", "Check your email",  "http://www.mail2web.com/", "");
	menu.addSubItem("email", "Learn About our mail system", "Learn About our mail system",  "Mail system.htm", "");

	menu.showMenu();
}