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

	menu = new Menu();
	menu.addItem("homeid", "GIFT4LOVER.COM", "GIFT4LOVER.COM",  null, null);
	menu.addItem("gearid", "LEGO GEARS", "LEGO 精品",  null, null);
	menu.addItem("orderid", "HOW TO ORDER", "如何頂購",  null, null);
	menu.addItem("contactid", "CONTACT", "聯絡我們",  null, null);

	menu.addSubItem("homeid", "Main Page", "返回主頁",  "index.html");
	menu.addSubItem("homeid", "Help & FAQ", "一般問題",  "help.html");
	menu.addSubItem("homeid", "Terms of Use", "版權聲明及使用條款",  "terms.html");
		
	menu.addSubItem("gearid", "Lego Watch", "Lego 手錶",  "watch.html");
	menu.addSubItem("gearid", "Lego Clock", "Lego 鬧鐘",  "clock.html");
	    
	menu.addSubItem("orderid", "Order Form", "頂購表格",  "order.html");
				
	menu.addSubItem("contactid", "About US", "關於我們", "location.html");
	menu.addSubItem("contactid", "Email US", "電郵本店", "mailto:info@gift4lover.com ?subject=Customer Enquiry");
	
	menu.showMenu();
}
