function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "Home", "Home",  "index.htm");
        menu.addItem("coreid", "Core Values", "Core Values",  "introduction.htm");
        menu.addItem("familyid", "Family Of Companies", "Family Of Companies",  null, null);
        menu.addItem("serviceid", "Service Coverage", "Service Coverage",  null, null);
        menu.addItem("proid", "Profiles", "Profiles",  null, null);
        menu.addItem("letterid", "Letter To Shareholders", "Letter To Shareholders",  "letter.htm");
        menu.addItem("officersid", "Officers", "Officers",  "officers.htm");
        menu.addItem("directorsid", "Directors", "Directors",  "directors.htm");
        menu.addItem("contactsid", "Contacts", "Contacts",  "contacts.htm");
	

        

	

        menu.addSubItem("familyid", "Yellow", "Yellow",  "family-yellow.htm");
        menu.addSubItem("familyid", "Saia", "Saia",  "family-saia.htm");
        menu.addSubItem("familyid", "Jevic", "Jevic",  "family-jevic.htm");
        menu.addSubItem("familyid", "Yellow Technologies", "Yellow Technologies",  "family-yt.htm");
        menu.addSubItem("familyid", "Transportation.com", "Transportation.com",  "family-tcom.htm");
        menu.addSubItem("familyid", "", "",  "");
	

	menu.addSubItem("serviceid", "Yellow Freight", "Yellow Freight",  "service-yellow.htm");
        menu.addSubItem("serviceid", "Saia", "Saia",  "service-saia.htm");
        menu.addSubItem("serviceid", "Jevic", "Jevic",  "service-jevic.htm");
        menu.addSubItem("serviceid", "", "", "");


        menu.addSubItem("proid", "Yellow Freight Exact Express And Scholastic", "Yellow Freight Exact Express And Scholastic",  "pro-scholastic.htm");
        menu.addSubItem("proid", "Yellow Freight Definite Delivery And Pfizer", "Yellow Freight Definite Delivery And Pfizer",  "pro-pfizer.htm");
        menu.addSubItem("proid", "Saia And Benjamin Moore & Co.", "Saia And Benjamin Moore & Co.",  "pro-benjamin.htm");
        menu.addSubItem("proid", "Jevic And Straight Arrow Products, Inc.", "Jevic And Straight Arrow Products, Inc.",  "pro-straight.htm");
        menu.addSubItem("proid", "Yellow Technologies Is Our Secret Weapon", "Yellow Technologies Is Our Secret Weapon",  "pro-yt.htm");
        menu.addSubItem("proid", "", "", "");


	


	menu.showMenu();
}