//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("home", "Home", "Home",  null, null);
	menu.addItem("autos", "Autos", "Autos",  null, null);
	menu.addItem("Cycle", "Cycle", "Cycle",  null, null);
	menu.addItem("searchengineid", "About", "About",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	//menu.addSubItem("home", "Start Page", "Start Page",  "http://www.anthonysautomotive.com/default.htm", "");
	menu.addSubItem("home", "Homepage", "Homepage",  "http://www.anthonysautomotive.com", "");
	
	
	menu.addSubItem("autos", "On-Line Estimates", "On-Line Estimates",  "estimate.htm", "");
	menu.addSubItem("autos", "On-Line Appointment", "On-Line Appointment",  "appointment.htm", "");	 
	menu.addSubItem("autos", "Inspections", "Inspections",  "inspections.htm", "");
	menu.addSubItem("autos", "Auto Repair", "Auto Repair",  "repair.htm", "");
    
	
	menu.addSubItem("Cycle", "state Inspections", "state Inspection",  "cycleinsp.htm", "");
	
	
	
	
	menu.addSubItem("searchengineid", "Contact Us", "Contact Us",  "contactus.htm", "");
	menu.addSubItem("searchengineid", "Directions", "Directions",  "directions.htm", "");
	menu.addSubItem("searchengineid", "About Us", "About Us",  "aboutus.htm", "");

	menu.addSubItem("miscid", "Links", "Links",  "links.htm", "");
	menu.addSubItem("miscid", "Affiliates", "Affiliates",  "affiliates.htm", "");
	
	menu.showMenu();
}