//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.cooperscollisioncorner.com/index.html", "");

        menu.addSubItem("Heading2", "About Us", "About Us",  "http://www.cooperscollisioncorner.com/AboutUs.html", "");
        menu.addSubItem("Heading2", "Map", "Map",  "http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=2709+North+Adams+Tacoma,+WA.+98407","");
        menu.addSubItem("Heading2", "Our History", "Our History",  "http://www.cooperscollisioncorner.com/History.html", "");
        menu.addSubItem("Heading2", "FAQs", "FAQs",  "http://www.cooperscollisioncorner.com/FAQs.html", "");
	menu.addSubItem("Heading2", "Gallery", "Gallery",  "http://www.cooperscollisioncorner.com/Gallery.html", "");
        menu.addSubItem("Heading2", "Before & After", "Before & After",  "http://www.cooperscollisioncorner.com/BeforeAfter.html", "");


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

	menu.addSubItem("Heading4", "Links", "Links",  "http://www.cooperscollisioncorner.com/Links.html", "");
        menu.addSubItem("Heading4", "Articles", "Articles",  "http://www.cooperscollisioncorner.com/Articles.html", "");
        menu.addSubItem("Heading4", "Glossary of Auto Body Terms", "Glossary of Auto Body Terms",  "http://www.cooperscollisioncorner.com/Glossary.html", "");
	menu.addSubItem("Heading4", "Where's My Car?", "Where's My Car?",  "http://www.cooperscollisioncorner.com/WheresMyCar.pdf", "");
	menu.addSubItem("Heading4", "Testimonials", "Testimonials",  "http://www.cooperscollisioncorner.com/Testimonials.html", "");






	menu.showMenu();
}

