//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm



function showToolbar()

{

// AddItem(id, text, hint, location, alternativeLocation);

// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("MainHeading", "Home", "Home",  null, null);
	menu.addItem("Heading2", "About Us", "About Us",  null, null);
	menu.addItem("Heading3", "Contact", "Contact",  null, null);
	menu.addItem("Heading4", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("MainHeading", "Home", "Home",  "http://www.preauto.com/index.html", "");

        menu.addSubItem("Heading2", "Inside", "Inside",  "http://www.preauto.com/FInside.html", "");
        menu.addSubItem("Heading2", "Map", "Map",  "http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=3723+6th+Ave.+Tacoma,+WA.+98406&sll=42.940339,2.109375&sspn=89.737109,227.8125&ie=UTF8&ll=47.255364,-122.486358&spn=0.010938,0.027809&z=16&iwloc=addr", "");
        menu.addSubItem("Heading2", "Schedule Appointment", "Schedule Appointment",  "http://www.preauto.com/Appointment.html", "");
	menu.addSubItem("Heading2", "Our Technicians", "Our Technicians",  "http://www.preauto.com/Techs.html", "");
        menu.addSubItem("Heading2", "Our Equipment", "Our Equipment",  "http://www.preauto.com/FEquipment.html", "");
        menu.addSubItem("Heading2", "Repair Bays", "Repair Bays",  "http://www.preauto.com/RepairBays.html", "");

        menu.addSubItem("Heading3", "Contact", "Contact",  "http://www.preauto.com/Contact.html", "");

	menu.addSubItem("Heading4", "Links", "Links",  "http://www.preauto.com/Links.html", "");
	menu.addSubItem("Heading4", "Coupons & Specials", "Coupons & Specials",  "http://www.preauto.com/Coupons.html", "");
	menu.addSubItem("Heading4", "Testimonials", "Testimonials",  "http://www.preauto.com/Testimonials.html", "");






	menu.showMenu();
}

