function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("webmasterid", "Our Specialities", "Our Specialities",  null, null);
	menu.addItem("newsid", "Our Products", "Our Products",  null, null);
	menu.addItem("nextid", "Access To Info Act", "Access To Info Act",  null, null);
	menu.addItem("searchengineid", "About Us", "About Us",  null, null);

	menu.addSubItem("webmasterid", "Our Specialities", "Our Specialities",  "specialities.html");
	
	


	menu.addSubItem("newsid", "What We Manufacture", "What We Manufacture",  "1.html");
	menu.addSubItem("newsid", "Products Catalogue", "Products Catalogue",  "products_catalogue.html");

	
	menu.addSubItem("nextid", "View Manual", "View Manual",  "access.html");

	
	menu.addSubItem("searchengineid", "Contact Us", "Contact Us",  "contact_us.html");
	menu.addSubItem("searchengineid", "SABS Certificate", "SABS Certificate",  "sabs.html");	
	menu.addSubItem("searchengineid", "Boksburg Map", "Boksburg Map",  "map.html");
	menu.addSubItem("searchengineid", "Durban Map", "Durban Map",  "map_dbn.html");
	menu.addSubItem("searchengineid", "Product Gallery-1", "Product Gallery-1",  "gallery1.html");
	menu.addSubItem("searchengineid", "Product Gallery-2", "Product Gallery-2",  "gallery2.html");
	menu.addSubItem("searchengineid", "Factory Photos", "Factory Photos",  "gallery3.html");



	menu.showMenu();
}
