function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation,image file);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("aboutus", "", "About Ginvera", "/about_ginvera/aboutus.htm", null,"/images/top_menu/aboutus.gif", true);
	menu.addItem("shoponline", "", "Buy our products online", "/shop_online/shoponline.htm", null,"/images/top_menu/shoponline.gif", true);
	menu.addItem("promotion", "", "Promotions and Advertisements",  "/promotion/promotion.asp",null,"/images/top_menu/promotion.gif", true);
	menu.addItem("contactus", "", "Talk to us", "/contact_us/contact_us.htm", null,"/images/top_menu/contact.gif", false);
	menu.addItem("sitemap", "", "How to navigate around", "/sitemap/sitemap.htm", null,"/images/top_menu/sitemap.gif", false);
	menu.addItem("jobopportunities", "", "Join Us",  "/job_opportunities/job_opportunities.asp", null,"/images/top_menu/jobopp.gif", false);
	menu.addItem("businessopportunities", "", "Business to Business",  "/business_opportunities/co_background.asp", null,"/images/top_menu/business.gif", false);
	menu.addItem("memberslogin", "", "Sign Up/Login as Ginvera member",  "/members/members.asp", null,"/images/top_menu/members.gif", false);
	
	menu.addSubItem("aboutus", "Introduction", "A brief introduction",  "/about_ginvera/aboutus.htm");
	menu.addSubItem("aboutus", "Mission Statement", "Our mission statement",  "/about_ginvera/mission_statement.htm");
	menu.addSubItem("aboutus", "Group History", "Group History",  "/about_ginvera/Grouphistory.htm");
	//menu.addSubItem("aboutus", "Group Structure", "Group Strucuture",  "/about_ginvera/group_structure.htm");

	menu.addSubItem("promotion", "Advertisements", "Ginvera Advertisements",  "/advertisement/advertisement.asp");
	menu.addSubItem("promotion", "Promotion", "Products on Promotion",  "/promotion/promotion.asp");
	
	menu.addSubItem("shoponline", "Skin/facial care", "Skin and facial care products",  "/shop_online/product.asp?cat_id=2");
	menu.addSubItem("shoponline", "Body care", "Body care products",  "/shop_online/product.asp?cat_id=4");
	menu.addSubItem("shoponline", "Hair care", "Hair care products",  "/shop_online/product.asp?cat_id=1");
	menu.addSubItem("shoponline", "Kids/Baby care", "Kids and baby care products",  "/shop_online/product.asp?cat_id=3");
	menu.addSubItem("shoponline", "Health Care/Wear", "Health and Care Wear products",  "/shop_online/product.asp?cat_id=5");
	menu.addSubItem("shoponline", "Household", "HouseHold products",  "/shop_online/product.asp?cat_id=6");
	menu.addSubItem("shoponline", "Others", "Other products",  "/shop_online/product.asp?cat_id=7");

	menu.showMenu();
}