
function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("backgroundsid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HOME", "Home",  null, null);
              menu.addItem("otherthingsid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PROFILE", "profile",  null, null);
	menu.addItem("othergraphicsid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PRODUCTS", "Products",  null, null);
	menu.addItem("helpid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;QUALITY", "Quality",  null, null);
	menu.addItem("organid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ENQUIRY", "Enquiry Form",  null, null);
	menu.addItem("miscid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CONTACT", "How To Reach Us!",  null, null);
	menu.addItem("contactid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;E-MAIL !", "Email",  null, null);

	menu.addSubItem("backgroundsid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Home", "Main Home page", "index.htm");
	
	menu.addSubItem("othergraphicsid", "Products Main Page ", "Product Range ",  "products.htm");
	menu.addSubItem("othergraphicsid", "Primary Jaw Crushers ", "Primary Jaw Crushers ",  "primary.htm");
	menu.addSubItem("othergraphicsid", "Secondary Jaw Crushers ", "Secondary Jaw Crushers ",  "secondary.htm");
	menu.addSubItem("othergraphicsid", "Portable Crushing Plants  ", "Skid Mounted / Mobile Jaw Crusher Unit",  "portable.htm");
	menu.addSubItem("othergraphicsid", "Horizontal Shaft Impact Crusher", "Secondary Impact Crushers",  "impact.htm");
	menu.addSubItem("othergraphicsid", "Vertical Shaft Impact Crusher", "Shaktiman® Sand Crusher ",  "vsi.htm");
	menu.addSubItem("othergraphicsid", "Belt Conveyors & Hoppers", "Shaktiman® Belt Conveyors & Hoppers",  "bchoppers.htm");
	menu.addSubItem("othergraphicsid", "Grizzly Feeder & Vibrating Screen", "Shaktiman® Grizzly Feeder & Vibrating Screen",  "grizzly.htm");
	menu.addSubItem("othergraphicsid", "Spare Products", "Shaktiman® Spare Products",  "spares.htm");

	menu.addSubItem("helpid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Quality", "Quality",  "quality.htm");
	

	menu.addSubItem("otherthingsid", "&nbsp;&nbsp;Company Profile", "Company Profile",  "company_profile.htm");
	

	menu.addSubItem("organid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Enquiry", "Enquiry",  "enquiry.php");
	

	menu.addSubItem("miscid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Contact", "Contact",  "contact.htm");
	

	
	menu.addSubItem("contactid", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Email", "Email",  "mailto:rajvarma_nsk@sancharnet.in");

	menu.showMenu();
}
