//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("home", "HOME Link", "HOME Link",  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", "HOME", "HOME",  "hm1.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("home", "HOME", "HOME",  "hm1.html", "");


	menu.showMenu();
}
