

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("abtjentech", "About Jentech", "About Jentech",  null, null);
	menu.addItem("products", "Products", "Products",  null, null);
	menu.addItem("services", "Services", "Services",  null, null);
	menu.addItem("newsinfo", "News and Info", "newsinfo.html",  null, null);
	menu.addItem("email", "E-mail", "E-mail",  "mailto:info@jentechglobal.com");

	menu.addSubItem("abtjentech", "Coporate Overiew", "Corporate Overview",  "overview.html");
	menu.addSubItem("abtjentech", "Corporate Values", "Company Values",  "values.html");
	menu.addSubItem("abtjentech", "Quality Commitment", "Quality Commitment",  "quality.html");
		
	menu.addSubItem("products", "Precision Stampings", "Precision Stampings",  "metal-stampings.html");
	menu.addSubItem("products", "Precision Tooling", "Precision Tooling",  "tool-and-die.html");
	menu.addSubItem("products", "Injection Molding", "Injection Molding",  "iproducts.html");
	menu.addSubItem("products", "Assemblies", "Assemblies",  "aproducts.html");
	
	menu.addSubItem("services", "Engineering and Design",  "Engineering and Design",  "services.html");
	menu.addSubItem("services", "Supply Chain Management",  "Supply Chain Management",  "services.html");
	menu.addSubItem("services", "Contract Assembly",  "Contract Assembly",  "aproducts.html");
	
	menu.addSubItem("newsinfo", "Press Releases", "Home",  "press.html");
	menu.addSubItem("newsinfo", "Industry Links", "Industry Links",  "links.html");
	menu.addSubItem("newsinfo", "Helpful Web Resources", "Helpful Web Resources",  "resource.html");
	menu.addSubItem("newsinfo", "Employment Opprotunities", "Employment Opprotunities",  "emply.html");
        
        menu.addSubItem("email", "E-mail", "E-mail",  "mailto:info@jentechglobal.com");
	

	menu.showMenu();
}