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

	menu = new Menu();
	menu.addItem("homeid", "----- Home Page", "Home Page", "index.htm", null);
	menu.addItem("profileid", "----- Company Profile", "Company Profile ",  "profile.htm", null);
	menu.addItem("catalogid", "----- Product Catalogue", " Product Catalogue",  null, null);
	menu.addItem("contactid", "----- Contact Us", "Contact Us",  "contact.htm", null);

	menu.addSubItem("catalogid", " - Beds", "Beds",  "beds.htm", "");
	menu.addSubItem("catalogid", " - Bedroom Sets", "Bedroom Sets",  "bedsets.htm", "");
	menu.addSubItem("catalogid", " - Designer Chairs", "Designer Chairs",  "designchairs.htm", "");
	menu.addSubItem("catalogid", " - Dining Sets", "Dining Sets",  "dining.htm", "");
	menu.addSubItem("catalogid", " - Gazebos", "Gazebos",  "gazebos.htm", "");
	menu.addSubItem("catalogid", " - Glass Tables", "Glass Tables",  "glasstables.htm", "");
	menu.addSubItem("catalogid", " - Office Chairs", "Office Chairs",  "officechairs.htm", "");
	menu.addSubItem("catalogid", " - Outdoor / Garden Furniture", "Outdoor / Garden Furniture",  "outdoor.htm", "");
	menu.addSubItem("catalogid", " - Park Benches", "Park Benches",  "parkbench.htm", "");
	menu.addSubItem("catalogid", " - Park Bench Sets", "Park Bench Sets",  "parkbenchsets.htm", "");
	menu.addSubItem("catalogid", " - Recline Chairs", "Recline Chairs",  "recline.htm", "");
	menu.addSubItem("catalogid", " - Sofas", "Sofas",  "sofas.htm", "");
	menu.addSubItem("catalogid", " - Swimming Pool / Beach Reclining Chairs", "Swimming Pool / Beach Reclining Chairs",  "pool.htm", "");
	menu.addSubItem("catalogid", " - TV Consoles", "TV Consoles",  "console.htm", "");
	menu.addSubItem("catalogid", " - Umbrella Base", "Umbrella Base",  "umbbase.htm", "");
	menu.addSubItem("catalogid", " - Wardrobes", "Wardrobes",  "wardrobes.htm", "");
//	menu.addSubItem("catalogid", "Beds", "Beds",  "bed.html", "");
//	menu.addSubItem("catalogid", "Beds", "Beds",  "bed.html", "");
//	menu.addSubItem("catalogid", "Beds", "Beds",  "bed.html", "");
//	menu.addSubItem("catalogid", "Beds", "Beds",  "bed.html", "");

	menu.showMenu();
}
