
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("mainid", "Home", "Home",  "index.html", null);
	menu.addItem("courseid", "Courses", "Course",  null, null);
	menu.addItem("vehicleid", "Vehicles", "Vehicles",  "vehicle.html", null);
	menu.addItem("aboutid", "Information", "Information",  null, null);
	menu.addItem("linksid", "Links", "Links",  "links.html", null);	
	menu.addItem("contactid", "Contact Us", "Contact Us",  "contact.html", null);

	//menu.addSubItem("mainid", "Home", "Home",  "index.html", "");
	//menu.addSubItem("mainid", "ABC News", "ABC News",  "http://www.abcnews.com", "");

	menu.addSubItem("courseid", "Courses Main Page", "Courses Main Page", "courses.html","");
	menu.addSubItem("courseid", "Heavy Vehicle Courses", "Heavy Vehicle Course", "heavy_crses.html", "");
	menu.addSubItem("courseid", "Car Courses", "Car Courses",  "car_courses.html", "");
	menu.addSubItem("courseid", "Certificate Course", "Certificate Courses", "cert_courses.html", "");
	//menu.addSubItem("courseid", "Productivity Places Program", "Productivity Places Program", "vouchers.html", "");
	menu.addSubItem("courseid", "Hazardous Area - Snow Licence", "Hazardous Area - Snow Licence", "snow.html", "");
	menu.addSubItem("courseid", "Other Courses", "Other Courses",  "other_crses.html", "");

	//menu.addSubItem("vehicleid", "MSNBC", "MSNBC",  "http://www.msnbc.com", "");
	//menu.addSubItem("vehicleid", "CBS news", "CBS News",  "http://www.cbsnews.com", "");
	//menu.addSubItem("vehicleid", "News.com", "News.com",  "http://news.com", "");
	//menu.addSubItem("vehicleid", "Wired News", "Wired News",  "http://www.wired.com", "");
	//menu.addSubItem("vehicleid", "TechWeb", "TechWeb",  "http://www.techweb.com", "");

	menu.addSubItem("aboutid", "About us", "About us",  "about.html", "");
	menu.addSubItem("aboutid", "Student Information", "Student Information", "./documents/student information.pdf", "_blank");
	menu.addSubItem("aboutid", "Fee and Refund Policy", "Fee and Refund Policy", "./documents/refund policy.pdf", "_blank");
	menu.addSubItem("aboutid", "Privacy Policy", "Privacy Policy", "./documents/privacy policy.pdf", "_blank");
	//menu.addSubItem("aboutid", "Contact us", "Contact us",  "contact.html", "");

	//menu.addSubItem("linkid", "Yahoo", "Yahoo",  "http://www.yahoo.com/", "");
	//menu.addSubItem("linksid", "Google", "Google",  "http://www.google.com/", "");
	//menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com", "");
	//menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com", "");

	//menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.cnet.com/", "");
	//menu.addSubItem("miscid", "RealAudio", "RealAudio",  "http://www.realaudio.com/", "");
	//menu.addSubItem("miscid", "MP3.com", "MP3.com",  "http://www.mp3.com/", "");

	menu.showMenu();
}