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

	menu = new Menu();
	menu.addItem("mainmenuid", "Main Menu", "Main Menu",  null, null);
	menu.addItem("productid", "Products", "Products",  null, null);
	menu.addItem("serviceid", "Services", "Services",  null, null);
	menu.addItem("aboutid", "About Us", "About Us",  null, null);
	menu.addItem("literatureid", "Literature", "Literature",  null, null);
		
	menu.addSubItem("mainmenuid", "Home", "Home",  "http://homeaid.com/index.htm");
	menu.addSubItem("mainmenuid", "Order Info", "Order Info",  "/shop/how2order.htm");
	menu.addSubItem("mainmenuid", "Insurance Plans", "Insurance Plans",  "/cgi-local/shop.pl/page=insurance.htm");
	menu.addSubItem("mainmenuid", "Submit New Products", "Submit New Products",  "/shop/form.html");
	menu.addSubItem("mainmenuid", "Search", "Search",  "/cgi-local/shop.pl/page=search.htm");

	menu.addSubItem("productid", "Ambulatory", "Ambulatory",  "/cgi-local/shop.pl/page=ambulatory.htm");
	menu.addSubItem("productid", "Blood Pressure Monitors", "Blood Pressure Monitors",  "/cgi-local/shop.pl/page=bpmonitors.htm");
	menu.addSubItem("productid", "Cushions & Padding", "Cushions & Padding",  "/cgi-local/shop.pl/page=cushpad.htm");
	menu.addSubItem("productid", "Diabetic Products", "Diabetic Products",  "/cgi-local/shop.pl/page=diabetic.htm");
	menu.addSubItem("productid", "Diagnostic", "Diagnostic",  "/cgi-local/shop.pl/page=diagnostic.htm");
	menu.addSubItem("productid", "GIFT CERTIFICATES", "GIFT CERTIFICATES",  "/cgi-local/shop.pl/page=egift.htm");
	menu.addSubItem("productid", "Gloves", "Gloves",  "/cgi-local/shop.pl/page=gloves.htm");
	menu.addSubItem("productid", "Nebulizers", "Nebulizers",  "/cgi-local/shop.pl/page=nebulizers.htm");
	menu.addSubItem("productid", "NEW PRODUCTS", "NEW PRODUCTS",  "/cgi-local/shop.pl/page=newprod.htm");
	menu.addSubItem("productid", "Ostomy", "Ostomy",  "/cgi-local/shop.pl/page=ostomy.htm");
	menu.addSubItem("productid", "SALE", "SALE",  "/cgi-local/shop.pl/page=sale.htm");
	menu.addSubItem("productid", "Sleep Therapy", "Sleep Therapy",  "/cgi-local/shop.pl/page=sleep.htm");
	menu.addSubItem("productid", "Wellness Products", "Wellness Products",  "/cgi-local/shop.pl/page=wellness.htm");
	
	menu.addSubItem("serviceid", "Repair Center", "Repair Center",  "/cgi-local/shop.pl/page=repairform.htm");
	menu.addSubItem("serviceid", "Insurance Accepted", "Insurance Accepted",  "/cgi-local/shop.pl/page=insurance.htm");
     	menu.addSubItem("serviceid", "Gift Certificates", "Gift Certificates",  "/cgi-local/shop.pl/page=egift.htm");
	
	menu.addSubItem("aboutid", "Mission Statement", "Mission Statement",  "/shop/mission.htm");
	menu.addSubItem("aboutid", "Contact Us", "Contact Us",  "/shop/contact.htm");
	menu.addSubItem("aboutid", "In The News", "In The News", "/shop/innews.htm");
	menu.addSubItem("aboutid", "Employment", "Employment",  "/shop/jobs.htm");

	menu.addSubItem("literatureid", "Pamphlets", "Pamphlets",  "/cgi-local/shop.pl/page=pamphlets.htm");
	
	
	menu.showMenu();
}