//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("newsid", "About Emfour", "About Emfour",  null, null);
	menu.addItem("webmasterid", "Course Information", "Course Information",   null, null);
	menu.addItem("new", "Course and Workshop Brochures", "Course Workshop Brochures",  "downloads.html", "");
	menu.addItem("freedownloadid", "Information Desk", "Information Desk",  null, null);
	menu.addItem("searchengineid", "Staff", "Staff",  "staff/internalcontent.html", "");
	menu.addItem("miscid", "Contact Us", "Contact Us",  "contact.html", "");
	menu.addItem("newid", "Home", "Home",  "index.html", "");
	
	
	menu.addSubItem("newsid", "An Introduction", "An Introduction",  "about.html", "");
	menu.addSubItem("newsid", "The Em-Four Ethos", "The Em-Four Ethos",  "ethos.html", "");
	
	
	menu.addSubItem("webmasterid", "Workshops", "Workshops",  "workshops.html", "");
	menu.addSubItem("webmasterid", "Courses", "Courses",  "accreditedcourses.html", "");
	menu.addSubItem("webmasterid", "Course Dates", "Course Dates",  "publiccourses.html", "");
	menu.addSubItem("webmasterid", "Enrolment", "Enrolment",  "enrolment.html", "");
	menu.addSubItem("webmasterid", "Traineeships and Financial Incentives", "Traineeships and Financial Incentives",  "traineeships.html", "");
	menu.addSubItem("webmasterid", "Council Parking Officer (Pre-Employment) Course", "Council Parking Officer (Pre-Employment) Course",  "LGPcourse.html", "");
	
	
	
	menu.addSubItem("freedownloadid", "Customer Service", "Customer service",   "customerservice.html", "");
	menu.addSubItem("freedownloadid", "FAQ", "FAQ",   "faq.html", "");
	menu.addSubItem("freedownloadid", "Clients", "Clients",   "clients.html", "");
	
	

	
	
	
	
	

	menu.showMenu();
}