//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("mainpage", "主頁", "Main Page",   "main.asp", "");
	menu.addItem("companyprofile", "公司簡介", "Company Profile",  null, null);
	menu.addItem("projectoverview", "項目概覽", "Projects Overview",   "project.asp", "");
	menu.addItem("dkproducts", "產品介紹", "Products",  null, null);
	//menu.addItem("refprice", "參考價目", "Reference Price",  null, null);
	menu.addItem("cservice", "客戶服務", "Customer Service",  null, null);
	menu.addItem("dkjapan", "日本大金", "Daikin Japan",  null, null);
	menu.addItem("latestnews", "其它資訊", "Other News",   "news.asp", "");


	menu.addSubItem("companyprofile", "中原電器", "Chung Yuen Electrical Co., Ltd.",  "profile.asp", "");
	menu.addSubItem("companyprofile", "空調部", "CY Air-Con Division",  "profile_ac.asp", "");

	menu.addSubItem("dkproducts", "家用分體系列", "Home",  "Product_01.asp", "");
	menu.addSubItem("dkproducts", "商用分體系列", "Commerce",  "Product_02.asp", "");
	menu.addSubItem("dkproducts", "VRV 變頻系列", "VRV",  "Product_03.asp", "");
	menu.addSubItem("dkproducts", "中央空調系列", "Central",  "Product_04.asp", "");
	menu.addSubItem("dkproducts", "電擊光催化空氣潔淨機", "Air Cleaner",  "catalog/MC707BFVM.pdf", "_BLANK");

	//menu.addSubItem("refprice", "PACKAGED AIR CONDITIONER", "PACKAGED AIR CONDITIONER",  "price_01.asp", "");
	//menu.addSubItem("refprice", "SMALL [SKYAIR] SERIES", "SMALL [SKYAIR] SERIES",  "price_02.asp", "");
	//menu.addSubItem("refprice", "SKYAIR SERIES", "SKYAIR SERIES",  "price_03.asp", "");
	//menu.addSubItem("refprice", "MINI-SPLIT AIR CONDITIONER ", "MINI-SPLIT AIR CONDITIONER ",  "price_04.asp", "");

	menu.addSubItem("cservice", "登記保用証", "Warranty Registration",  "register.asp", "");
	menu.addSubItem("cservice", "預約檢查/維修", "Repair Service",  "repair.asp", "");
	menu.addSubItem("cservice", "產品查詢/聯絡我們", "Enquiry / Contact Us", "contact.asp", "");

	menu.addSubItem("dkjapan", "日本大金網站[日文版]", "Daikin Japan [Japanese Version]",  "http://www.daikin.co.jp/", "_blank");
	menu.addSubItem("dkjapan", "日本大金網站[英文版]", "Daikin Japan [English Version]",  "http://www.daikin.com/", "_blank");

	//menu.addSubItem("notice", "- <font face=arial>Newsletter</font>", "Newsletter",  "pdf/newsletter.pdf", "_blank");
	//menu.addSubItem("notice", "- 嚴正聲明", "嚴正聲明",  "image/chinese_01.jpg", "_blank");
	//menu.addSubItem("notice", "- <font face=arial>Important Notice</font>", "Important Notice",  "image/english_01.jpg", "_blank");
	//menu.addSubItem("notice", "- <font face=arial>CY Print Promotion</font>", "CY Promotion 2006",  "image/ad/ad_2006Apr_CYDaikin.jpg", "_blank");
	//menu.addSubItem("notice", "- <font face=arial>Daikin(HK) Print Promotion</font>", "Daikin(HK) Print Promotion 2006",  "promotion/print_promo/daikin-print.jpg", "_blank");
	//menu.addSubItem("notice", "- <font face=arial>Daikin(HK) TV Promotion</font>", "Daikin(HK) Promotion 2006",  "daikin_tvc.html", "_blank");
	//menu.addSubItem("notice", "- <font face=arial>Daikin(HK) Bus Promotion</font>", "Daikin(HK) Bus Promotion 2006",  "promotion/bus_promo/bus_promo.html", "_blank");
	//menu.addSubItem("notice", "- <font face=arial>Daikin(HK) MTR Promotion</font>", "Daikin(HK) MTR Promotion 2006",  "promotion/mtr_promo/mtr_promo.html", "_blank");

	menu.showMenu();
}

