function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("infoid", "Information", "Information",  null, null);
	menu.addItem("tourid", "Tour", "Tour",  null, null);
	menu.addItem("galleryid", "Gallery", "Gallery",  null, null);
	menu.addItem("newsletterid", "Newsletter", "Newsletter",  null, null);
	menu.addItem("appointmentsid", "Appointments", "Appointments",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);

	menu.addSubItem("infoid", "Services", "Services",  "services.htm");
	menu.addSubItem("infoid", "Healthy Pet Policies", "Healthy Pet Policies",  "health.htm");
	menu.addSubItem("infoid", "Request Info (form)", "Request Info (form)",  "comingsoon.htm");
	menu.addSubItem("infoid", "FAQ", "FAQ",  "faq.htm");
	menu.addSubItem("infoid", "Grooming Tips", "Grooming Tips",  "comingsoon.htm");
	menu.addSubItem("infoid", "Employment", "Employment",  "employment.htm");

	menu.addSubItem("tourid", "Take the Tour", "Take the Tour",  "comingsoon.htm");
	menu.addSubItem("tourid", "Meet the Staff", "Meet the Staff",  "peeps.htm");

	menu.addSubItem("galleryid", "Before and After", "Before and After",  "beforeandafter.htm");
	menu.addSubItem("galleryid", "Clients", "Clients",  "gallery.php");

	menu.addSubItem("newsletterid", "Current Newsletter", "Current Newsletter",  "comingsoon.htm");
	menu.addSubItem("newsletterid", "Archives", "Archives",  "comingsoon.htm");
	menu.addSubItem("newsletterid", "E-mail Newsletter Signup", "E-mail Newsletter Signup", "comingsoon.htm");


	menu.addSubItem("appointmentsid", "Request Appointment", "Request Appointment",  "appointmentform.htm");
	menu.addSubItem("appointmentsid", "Coupon", "Coupon",  "coupon.htm");

	menu.addSubItem("linksid", "The Haven", "The Haven",  "http://thehaven-nc.com/");
	menu.addSubItem("linksid", "AKC", "AKC",  "http://www.akc.org");
menu.addSubItem("linksid", "Espree", "Espree",  "http://www.espree.com/");
	menu.addSubItem("linksid", "Lupine Collars", "Lupine Collars",  "http://lupinepet.com/");
menu.addSubItem("linksid", "Carolina Pet Care Services", "Carolina Pet Care Services",  "http://www.carolinapetcare.com/pages/1/index.htm");
	menu.addSubItem("linksid", "Fayetteville Pet Care", "Fayetteville Pet Care",  "http://www.fayettevillepetcare.com/");
menu.addSubItem("linksid", "Best Friends", "Best Friends",  "http://k9styler.com/index.html");


	menu.showMenu();
}
