//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("about", "About Handyman Central", "About Handyman Central",  null, null);
	menu.addItem("service", "Customer Service", "Customer Service",  null, null);
	menu.addItem("special", "Special Announcements", "Special Announcements",  null, null);


	menu.addSubItem("about", "Our Story & Philosophy", "Our Story & Philosophy",  "story.html", "");
	menu.addSubItem("about", "Tasks & Services", "Tasks & Services",  "hmctasks.htm", "");
	menu.addSubItem("about", "Service Area Map", "Service Area Map",  "servicemap.html", "");
	menu.addSubItem("about", "Contact Us", "Contact Us",  "contact.html", "");


	menu.addSubItem("service", "Tasks & Services", "Tasks & Services",  "hmctasks.htm", "");
	menu.addSubItem("service", "Service Inquiry", "Service Inquiry",  "feedback.html", "");
	menu.addSubItem("service", "Service Survey", "Service Survey",  "survey.html", "");
	menu.addSubItem("service", "Payment Options", "Payment Options",  "poptions.html", "");
	menu.addSubItem("service", "Our Fees & Rates", "Our Fees & Rates",  "rates.html", "");


	menu.addSubItem("special", "Specials", "Specials",  "specials.html", "");
	menu.addSubItem("special", "Gift Certificates", "Gift Certificates Site",  "certificates.html", "");
	

	menu.showMenu();
}