//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", "Services", "Services",  null, null);
	menu.addItem("Heading3", "Contact", "Contact",  null, null);
	menu.addItem("Heading4", "Miscellaneous", "Miscellaneous",  null, null);

	menu.addSubItem("MainHeading", "Home", "Home",  "http://www.finedesignframing.com/index.html", "");
	menu.addSubItem("MainHeading", "About Us", "About Us",  "http://www.finedesignframing.com/AboutUs.html", "");

        menu.addSubItem("Heading2", "Shadow Boxes", "Shadow Boxes",  "http://www.finedesignframing.com/Shadowboxes.html", "");


        menu.addSubItem("Heading3", "Contact", "Contact",  "mailto:deborah-afd@hotmail.com", "");

        menu.addSubItem("Heading4", "Glossary of Framing Terms", "Glossary of Framing Terms",  "http://www.finedesignframing.com/Glossary.html", "");
        menu.addSubItem("Heading4", "Map-Directions", "Map-Directions",  "http://maps.google.com/maps?hl=en&tab=wl&q=8227%20south%20park%20avenue%20tacoma%20WA%2098408", "");






	menu.showMenu();
}

