function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("secprojectid", "Services", "Services", null,  null);
	menu.addItem("expertiseid", "Expertise", "Expertise", "expertise.html", "expertise.html");
	menu.addItem("linksid", "Links", "Links", null, null);
	menu.addItem("resumeid", "Resume", "Resume", "resume.html", "resume.html");
menu.addItem("currentid", "Projects", "Projects", "current-projects.html", "");


	menu.addItem("emailid", "E-mail", "E-mail",  "mailto:jrb@jrb.cc", "mailto:jrb@jrb.cc");
	menu.addItem("homeid", "Home", "Home", "index.html", "index.html");

	menu.addSubItem("secprojectid", "All Services", "All Services", "services.html", "");
	menu.addSubItem("secprojectid", "Assessment", "Assessment", "services.html#assessment", "");
	menu.addSubItem("secprojectid", "Design", "Design", "services.html#design", "");
	menu.addSubItem("secprojectid", "Vendor Negotiations", "Vendor Negotiations", "services.html#vendor", "");
	menu.addSubItem("secprojectid", "Project Management", "Project Management", "services.html#project", "");
	menu.addSubItem("secprojectid", "Policies & Procedures", "Policies & Procedures", "services.html#policies", "");
	menu.addSubItem("secprojectid", "On-going Consulting", "On-going Consulting", "services.html#ongo", "");
	menu.addSubItem("secprojectid", "Requirements", "Requirements", "services.html#requirements", "");
	menu.addSubItem("secprojectid", "Test and Commission", "Test and Commission", "test_and_commission.html", "");
	menu.addSubItem("secprojectid", "", "", "", "");

         menu.addSubItem("expertiseid", "Expertise", "Expertise", "expertise.html", "");
		
	menu.addSubItem("linksid", "Infoseek", "Infoseek",  "http://www.infoseek.com/", "");
	menu.addSubItem("linksid", "Excite", "Excite", "http://www.excite.com", "");
	menu.addSubItem("linksid", "HotBot", "HotBot",  "http://www.hotbot.com", "");

	menu.addSubItem("resumeid", "Resume", "Resume", "resume.html", "");

menu.addSubItem("currentid", "Projects", "Projects", "current-projects.html", "");

	menu.addSubItem("emailid", "E-mail", "E-mail", "mailto:jrb@jrb.cc", "");

	menu.addSubItem("homeid", "Home", "Home", "index.html", "");

	menu.showMenu();
}

