function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("homeid", "首頁", "Home",  "index.html", null);
	menu.addItem("profileid", "我是誰", "My Profile", "particular.htm", null);
	menu.addItem("experienceid", "人生歷程",  "Life Experience",  null, null);
	menu.addItem("photoid", "相片簿", "Photo Album", null, null);
	menu.addItem("loveid", "我的最愛", "My Love", null, null);
	menu.addItem("tripid", "旅行記", "My Trips", null, null);
		
	menu.addSubItem("experienceid", "讀過的學校", "Mother Schools",  "school.htm");
	menu.addSubItem("experienceid", "特別經歷", "Special Experiences",  "spexperience.htm");
	menu.addSubItem("experienceid", "我的日記", "My Diary",  "diary.htm");

	menu.addSubItem("photoid", "晴晴及敏敏", "Olivia & Christine", "http://community.webshots.com/user/assuntaho");
	menu.addSubItem("photoid", "生活照", "Daily photos", "photos/life/index.htm");
	menu.addSubItem("photoid", "晴晴的成長照", "Olivia's photos", "http://www.pbase.com/assunta");
	menu.addSubItem("photoid", "結婚照", "Wedding photos", "http://www.geocities.com/assunta_michael");
	menu.addSubItem("photoid", "伊利沙伯中學", "QES", "http://www.geocities.com/ngaryin/qes/index.htm");
	menu.addSubItem("photoid", "地域支援組", "RSS", "photos/rss/index.htm");
        	menu.addSubItem("photoid", "英皇書院", "King's College",  "photos/kc/index.htm");
	menu.addSubItem("photoid", "中文大學", "CUHK",  "photos/cu/index.htm");
	menu.addSubItem("photoid", "嘉諾撒聖心書院", "SHCC",  "photos/secondary/index.htm");
	menu.addSubItem("photoid", "小學生時代", "SHCS",  "photos/primary/index.htm");
	menu.addSubItem("photoid", "小時候", "Child",  "photos/child/index.htm");

	menu.addSubItem("loveid", "我的最愛是誰", "Who's My Love ?",  "mylove.htm");
	menu.addSubItem("loveid", "晴晴及敏敏的誕生", "Birth of The Third Person",  "http://community.webshots.com/user/assunta244");
	menu.addSubItem("loveid", "啟示", "Inspirational Sayings", "saying.htm");
	menu.addSubItem("loveid", "音樂", "Music",  "music.htm");

	menu.addSubItem("tripid", "歐洲三美", "Europe", "http://community.webshots.com/user/assunta244");
	menu.addSubItem("tripid", "美加探親", "USA & Canada",  "http://community.webshots.com/user/assunta244");
	menu.addSubItem("tripid", "澳洲探親", "Perth & Melbourne",  "http://www.geocities.com/assunta_michael/perth/index.html");

				
	menu.showMenu();
}