

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	
	menu.addItem("servicesid", "Services", "Services", null, null);
	menu.addItem("industriesid", "Industries", "Industries", null, null);
	menu.addItem("Clients", "Clients", "Clients",  "clients.html","");
	menu.addItem("careersid", "Careers", "Careers", null, null);	
	menu.addItem("aboutusid", "About Us", "About Us", null, null);
	//menu.addItem("contactusid", "Contact Us","Contact Us",  null, null);
	menu.addItem("sitemapid", "Site Map","Site Map",  "sitemap.html" , "");
	menu.addItem("employeeconnectionid", "Employee Connection", "Employee Connection",  "employeeconn.html", "");
		
	menu.addSubItem("servicesid", "Consulting Services", "Consulting Services",  "consulting.html", "");	
	menu.addSubItem("servicesid", "Direct Placements", "Direct Placements", "directplacement.html","");
	menu.addSubItem("servicesid", "Project Outsourcing", "Project Outsourcing",  "outsourcing.html", "");	
	menu.addSubItem("servicesid", "Staffing Services", "Staffing Services",  "staffingservices.html", "");
	menu.addSubItem("servicesid", "Specialized", "Specialized",  "specialized.html", "");
	
	menu.addSubItem("careersid", "Benefits", "Benefits",  "benefits.html", "");
	menu.addSubItem("careersid", "Training", "Training",   "training.html", "");
	menu.addSubItem("careersid", "Hot List", "Hot List",   "Hotlist.html", "");
	menu.addSubItem("careersid", "Job Search", "Job Search",  "jobsearch.html", "");		
	menu.addSubItem("careersid", "Resume Submission", "Resume Submission",  "resumesubmit.html", "");	

	menu.addSubItem("industriesid", "Banking & Brokerage", "Banking & Brokerage",  "bankingbrokerage.html", "");
//	menu.addSubItem
//("industriesid", "Education", "Education", "education.html", "");
	menu.addSubItem("industriesid", "Energy", "Energy", "energy.html", "");
	menu.addSubItem("industriesid", "Government", "Government",  "government.html", "");
	menu.addSubItem("industriesid", "Information Technology", "Information Technology",  "infotech.html", "");
	menu.addSubItem("industriesid", "Pharmaceuticals", "Pharmaceuticals",  "pharma.html", "");
	menu.addSubItem("industriesid", "Telecommunications", "Telecommunications",   "telecom.html", "");
	
	menu.addSubItem("aboutusid", "Company Profile", "Company Profile", "aboutus.html", "");
	menu.addSubItem("aboutusid", "Contact Us", "Contact Us", "ourlocation.html","");
//	menu.addSubItem("aboutusid", "Our Location", "Our Location", "map.html", "");
	
	menu.showMenu();
}
