function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("svcid","Services","Services",null, null);
	menu.addItem("miscid", "Med Tips", "Med Tips",  null, null);
	menu.addItem("aboutid", "About Us", "About Us",  null, null);
	menu.addItem("linksid", "Other Links", "Other Links",  null, null);

	menu.addSubItem("svcid","Consulting", "Consulting",  "http://warrensapothecary.com/consulting.htm");
	menu.addSubItem("svcid","Prescriptions", "Prescriptions",  "http://warrensapothecary.com/prescriptions.htm");
	menu.addSubItem("svcid","Equipment", "Equipment",  "http://warrensapothecary.com/equipment.htm");
	menu.addSubItem("svcid","Home Care", "Home Care",  "http://warrensapothecary.com/home.htm");
	
	menu.addSubItem("miscid","Herbs in your Future?","Herbs in your Future?",  "http://warrensapothecary.com/medtip.htm");
	menu.addSubItem("miscid", "Senior Care", "Senior Care",  "http://warrensapothecary.com/medtip2.htm");
	menu.addSubItem("miscid", "Medicare and You", "Medicare and You",  "http://warrensapothecary.com/index.htm");
	
	menu.addSubItem("aboutid", "Hours of Operation", "Hours of Operation",  "http://warrensapothecary.com/index.htm");
	menu.addSubItem("aboutid", "Our Staff", "Our Staff",  "http://warrensapothecary.com/index.htm");

	menu.addSubItem("linksid", "Edwards Medical Service", "Edwards Medical Service",  "http://warrensapothecary.com/index.htm");

	menu.showMenu();
}