function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("aboutusid", "關於凡想", "關於凡想",  null, null);
	menu.addItem("newsid", "凡想點滴", "凡想點滴",  null, null);
	menu.addItem("exhibitid", "凡想影展", "凡想影展",  null, null);
	menu.addItem("travelid", "攝影旅遊", "攝影旅遊",  null, null);
	menu.addItem("linkid", "出去走走", "出去走走",  null, null);
	menu.addItem("saysomethingid", "有話要說", "有話要說",  null, null);
       
	menu.addSubItem("aboutusid", "首　　頁", "首　　頁",  "http://www.gogoph.com.tw/fancying/index.htm");
	menu.addSubItem("aboutusid", "關於凡想", "關於凡想",  "http://www.gogoph.com.tw/fancying/aboutus.htm");
	menu.addSubItem("aboutusid", "成員介紹", "成員介紹",  "http://www.gogoph.com.tw/fancying/member.htm");
	
	menu.addSubItem("newsid", "前　　言", "前　　言",  "http://www.gogoph.com.tw/fancying/preface.htm");
	menu.addSubItem("newsid", "心情語錄", "心情語錄",  "http://www.gogoph.com.tw/fancying/feeling.htm");
	menu.addSubItem("newsid", "凡想紀事", "凡想紀事",  "http://www.gogoph.com.tw/fancying/summary.htm");
		
	menu.addSubItem("exhibitid", "88年影展", "88年影展",  "http://www.gogoph.com.tw/fancying/exhibit88/exhibit88.htm");
	menu.addSubItem("exhibitid", "個人影展", "個人影展",  "http://www.gogoph.com.tw/fancying/indiv.htm");
	menu.addSubItem("exhibitid", "攝情點播站", "攝情點播站",  "http://www.gogoph.com.tw/fancying/feeling/feeling.htm");
	menu.addSubItem("exhibitid", "攝情小小說", "攝情小小說",  "http://www.gogoph.com.tw/fancying/fiction/fiction.htm");
	menu.addSubItem("exhibitid", "攝影雜記", "攝影雜記",  "http://www.gogoph.com.tw/fancying/note/note.htm");
	
	menu.addSubItem("travelid", "景點介紹", "景點介紹",  "http://www.gogoph.com.tw/fancying/landscape/landscape.html");
        menu.addSubItem("travelid", "行程咨詢", "行程咨詢",  "mailto:padi61@ms41.hinet.net");
                      
	menu.addSubItem("linkid", "來去澎湖逛逛", "來去澎湖逛逛",  "http://www.gogoph.com.tw/");
	menu.addSubItem("linkid", "高齊繁攝影集", "高齊繁攝影集",  "http://www.gogoph.com.tw/kou/kou.htm");
	menu.addSubItem("linkid", "張詠捷攝影展", "張詠捷攝影展",  "http://www.gogoph.com.tw/chang/index.htm");
	
	menu.addSubItem("saysomethingid", "聯絡我們", "聯絡我們",  "mailto:wenchang@ms82.url.com.tw");
		
	menu.showMenu();
}