function showToolbar() {

// AddItem(id, text, hint, location, alternativeLocation);

// AddSubItem(idParent, text, hint, location);

	
menu = new Menu();
	
menu.addItem("aboutid", "About us", "About us",  null, null);

	menu.addSubItem("aboutid", "Introduction", "Introduction", "intro.htm");
	menu.addSubItem("aboutid", "Committee", "Committee", "committee.htm");
	menu.addSubItem("aboutid", "Donation & Sponsors", "Donation & Sponsors",  "donation_sponsors.htm");
	menu.addSubItem("aboutid", "Bridge Friend Contacts", "Bridge Friend Contacts", "friends.htm");

menu.addItem("eventid", "Schedule", "Schedule",  null, null);

	menu.addSubItem("eventid", "News", "News",  "coming_tournaments.htm");
	menu.addSubItem("eventid", "Fee & Registration", "Fee & Registration",  "fee_&_registration.htm");
	menu.addSubItem("eventid", "Pre-Registration", "Pre-Registration", "pre_registration/pre_registration.htm");
	menu.addSubItem("eventid", "Tournament 2012", "Tournament 2012", "tournament/2012/schedule.php");
	menu.addSubItem("eventid", "Tournament All Years", "Tournament List", "tournament/tournamentList.htm");

menu.addItem("mpid", "Master Point", "Master Point",  null, null);

	menu.addSubItem("mpid", "Master Point 2011", "Master Point 2011",  "masterpoint/master2011.htm");
	menu.addSubItem("mpid", "Master Point 2010", "Master Point 2010",  "masterpoint/master2010.htm");
	menu.addSubItem("mpid", "Master Point All Years", "Master Point 2009",  "masterpoint/MP_List.htm");
	menu.addSubItem("mpid", "Master Point Calculation", "Master Point Calculation",  "masterpoint/MP_Calculation.htm");

menu.addItem("honourbdid", "Honour Boards", "Honour Boards",  null, null);
	menu.addSubItem("honourbdid", "Cup Winners 2011", "Cup Winners 2011", "cupwinner.php?year=2011"); 
	menu.addSubItem("honourbdid", "Cup Winners 2010", "Cup Winners 2010", "cupwinner.php?year=2010"); 
	menu.addSubItem("honourbdid", "Cup Winners ALL Years", "Cup Winners ALL Years", "cupwinner.php");
	menu.addSubItem("honourbdid", "Photos", "Photos", "photos/photos.htm");

menu.addItem("youthid", "Youth Camp", "Youth Camp",  null, null);

	menu.addSubItem("youthid", "Youth Camp 2006", "Youth Camp 2006", "camp/youth_camp_2006/camp_2006.htm");
	menu.addSubItem("youthid", "Youth Camp 2004", "Youth Camp 2004", "camp/youth_camp_2004/camp_2004.htm");
	menu.addSubItem("youthid", "Youth Camp 2001", "Youth Camp 2001", "camp/youth_camp_2001/camp_2001.htm");
	menu.addSubItem("youthid", "Youth Camp 2000", "Youth Camp 2000", "camp/youth_camp_2000/camp_2000.htm");

menu.addItem("outsideid", "Outside Tourneys", "Outside Tourneys",  null, null);

	menu.addSubItem("outsideid", "HKCBA Monthly Schedule", "HKCBA Monthly Schedule", "http://www.hkcba.org/schedule.jsp");
	menu.addSubItem("outsideid", "Kornhill Bridge Club", "Kornhill Bridge Club", "otherclub/kornhill/kh_schedule.php");
	menu.addSubItem("outsideid", "Other Bridge Club Area", "Other Bridge Club Area",  "other_bc.htm");
	menu.addSubItem("outsideid", "Outside Tourneys Results", "Outside Tourneys Results",  "other_bc_results.htm");

menu.addItem("articleid", "Articles", "Articles",  null, null);

	menu.addSubItem("articleid", "Dr. Tung's Column", "Dr. Tung's Column",  "tung_column.htm");
	menu.addSubItem("articleid", "Clement Wong's Column", "Clement Wong's Column",  "wong_column.htm");
	menu.addSubItem("articleid", "JC's Column", "JC's Column",  "http://www.angelfire.com/80s/koyuzu/");
	menu.addSubItem("articleid", "Other friends' articles", "Bridge Friends' Articles",  "articles.htm");

menu.addItem("trainid", "Training Square", "Training Square", null, null);

	menu.addSubItem("trainid", "General", "General",  "resource_/general.htm");
	menu.addSubItem("trainid", "Advanced", "Advanced",  "resource_/advanced.htm");

menu.addItem("specid", "Spectator", "Spectator", null, null);

	menu.addSubItem("specid", "Bridge Book Library", "Bridge Book Library",  "book_library.html");
	menu.addSubItem("specid", "Spring 2011", "Spring 2011",  "spectator/BH%20Spectator%20Spring%202011.pdf");	
	menu.addSubItem("specid", "Spring 2010", "Spring 2010",  "spectator/BH%20Spectator%20Spring%202010.pdf");	
	menu.addSubItem("specid", "Spring 2009", "Spring 2009",  "spectator/BH%20Spectator%20Spring%202009.pdf");
	menu.addSubItem("specid", "Spectator ALL Years", "Spectator All",  "spectator/spectator.htm");

menu.addItem("dissid", "Discussion Board", "Disscussion Board",  null, null);

	menu.addSubItem("dissid", "BridgeHouse" , "BridgeHouse", "http://www.phpbber.com/phpbb/bridgehouse.html");
	menu.addSubItem("dissid", "Hong Kong Bridge Forum" , "Hong Kong Bridge Forum", "http://forum.hkbridge.net/index.php");
	menu.addSubItem("dissid", "Chinese University", "Chinese University", "http://sites.google.com/site/cubridge/");
//	menu.addSubItem("dissid", "HKUST", "HKUST", "http://susis.ust.hk/WebNews/newsgroups.php?group=society.bridge&server=susis.ust.hk");
	menu.addSubItem("dissid", "Bridge Promotion Union", "Bridge Promotion Union", "http://pub29.bravenet.com/forum/show.php?usernum=2431086712");

menu.addItem("linksid", "Links", "Links", "links.htm", null);





	menu.showMenu();
}

