function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
        menu.addItem("homeid", "Home");
	menu.addItem("associd", "Associates");
	menu.addItem("jobsid", "Happy Jobs");
        menu.addItem("partnerid", "Partners");	
        menu.addItem("whydiffid", "Why We're Different");	
        menu.addItem("inhouseid", "In House");
	menu.addItem("employerid", "Employers");

        menu.addSubItem("homeid", "Contact information", "Contact information", "contact.htm", "contact.htm");
        menu.addSubItem("homeid", "Directions", "Directions", "directions.htm", "directions.htm");
        menu.addSubItem("homeid", "Home", "Home", "welcome.htm", "welcome.htm");

        menu.addSubItem("associd", "Becoming a HappyLawyer", "Becoming a HappyLawyer", "bhappy.htm", "bhappy.htm");
	menu.addSubItem("associd", "Process options",  "Process options",  "process.htm", "process.htm");
	menu.addSubItem("associd", "Profile yourself",  "Profile yourself",  "submit.asp", "submit.asp");
	
	menu.addSubItem("jobsid", "Job of the week",  "Job of the week",  "jobotweek.htm", "jobotweek.htm");
        menu.addSubItem("jobsid", "Job archive",  "Job archive",  "jobarchives.htm", "jobarchives.htm");

        menu.addSubItem("partnerid", "Our partner experience",  "Our partner experience",  "partexp.htm", "partexp.htm");
        menu.addSubItem("partnerid", "Lateral movement checklist",  "Lateral movement checklist",  "lateralmove.htm", "lateralmove.htm");
        menu.addSubItem("partnerid", "Profile yourself",  "Profile yourself",  "submit.asp", "submit.asp");

        menu.addSubItem("whydiffid", "Firm expertise",  "Firm expertise",  "expertise.htm", "expertise.htm");
	menu.addSubItem("whydiffid", "Past articles",  "Past articles",  "articles.htm", "articles.htm");	
        menu.addSubItem("whydiffid", "Testimonials",  "Testimonials",  "testimony.htm", "testimony.htm");
        menu.addSubItem("whydiffid", "Career resources",  "Career resources",  "carresources.htm", "carresources.htm");
					
	menu.addSubItem("inhouseid", "Our in house experience",  "Our in house experience",  "inhouse.htm", "inhouse.htm");
        menu.addSubItem("inhouseid", "Profile yourself",  "Profile yourself",  "submit.asp", "submit.asp");		
	
	menu.addSubItem("employerid", "Firm resume",  "Firm resume",  "thresume.htm", "thresume.htm");
	menu.addSubItem("employerid", "Fees",  "Fees",  "fees.htm", "fees.htm");
	menu.addSubItem("employerid", "Client testimonials",  "Client testimonials",  "testimonyclients.htm", "testimonyclients.htm");
     
	menu.showMenu();
}
