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

	menu = new Menu();
	menu.addItem("homeid", "Home", "",  null, null);
	menu.addItem("enviroid", "Environmental Services", "",  null, null);
	menu.addItem("healthid", "Health & Safety Services", "",  null, null);
	menu.addItem("contactid", "Contact Us", "",  null, null);
	menu.addItem("ourcliid", "Our Clients", "",  null, null);
	menu.addItem("agencyid", "Agency Links", "",  null, null);
	menu.addItem("ourcompid", "Our Company", "",  null, null);

	menu.addSubItem("homeid", "Home Page", "",  "home.html");
	menu.addSubItem("homeid", "What's Hot", "",  "whatshot.html");
	menu.addSubItem("homeid", "WebMaster", "",  "webmaster.html");

	menu.addSubItem("enviroid", "Environmental Site Assessments", "",  "phase1n2.html");
	menu.addSubItem("enviroid", "Compliance Management", "",  "compliancemgmnt.html");
	menu.addSubItem("enviroid", "Air Quality", "",  "airquality.html");
	menu.addSubItem("enviroid", "Indoor Air Quality", "",  "indoorairquality.html");
	menu.addSubItem("enviroid", "Water Quality", "",  "waterquality.html");
	menu.addSubItem("enviroid", "Tank Management", "",  "tankmanagement.html");	
	menu.addSubItem("enviroid", "Waste Management", "",  "wastemanagement.html");
	menu.addSubItem("enviroid", "ISO 14000", "",  "iso14000.html");

	menu.addSubItem("healthid", "Osha Compliance", "",  "oshacomp.html");
	menu.addSubItem("healthid", "Employee Exposure", "",  "empex.html");
    menu.addSubItem("healthid", "Asbestos &amp; Lead", "",  "asbestoslead.html");
	menu.addSubItem("healthid", "Hazardous Material Management", "",  "hazmat.html");
    menu.addSubItem("healthid", "Facility Audits", "",  "facaudits.html");
	menu.addSubItem("healthid", "Training (English &amp; Spanish)", "",  "training.html");

	menu.addSubItem("contactid", "Contact Us", "",  "contact.html");

	menu.addSubItem("ourcliid", "UltraViolet Devices", "",  "ultrdvio.html");
	menu.addSubItem("ourcliid", "Six Flags Magic Mountain", "",  "6flags.html");
	menu.addSubItem("ourcliid", "Venoco", "",  "venoco.html");
	menu.addSubItem("ourcliid", "William S. Hart Union High School", "",  "hart.html");
	menu.addSubItem("ourcliid", "City of Santa Clarita", "",  "santaclarita.html");

	menu.addSubItem("agencyid", "Important Links", "",  "linx.html");

	menu.addSubItem("ourcompid", "Our Company", "",  "ourcompany.html");
	menu.addSubItem("ourcompid", "Mission", "",  "mission.html");
	menu.addSubItem("ourcompid", "Vision", "",  "vision.html");

	
	
	menu.showMenu();
}