﻿<!--
	// path of this section
	var urlpath = "/signature/" + website + "/privileges";
	
	// this array stores the english names, the localised names and the url of the subsections
	// rule: arsubsection[0] = new Array([english name],[localised name],[url]);

	var arsubsection = new Array();
	arsubsection[0] = new Array("Taiwan","台灣","/taiwan/index.shtml");
	arsubsection[1] = new Array("Greater China","Visa大中華區尊榮優惠","/greater_china/index.shtml");
	arsubsection[2] = new Array("Airport Privileges","亞太地區國際機場<br>購物禮遇","https://www.visasignature-asia.com/signature/tw/benefits/airport_privileges/airport_shopping/index.shtml");
	arsubsection[3] = new Array("Golf","高爾夫巡禮","https://www.visasignature-asia.com/signature/tw/benefits/golf/index.shtml");
	
	// this array stores the detail names (in english) which corresponds to the subsection above
	// rule: ardetail[x] corresponds with arsubsection[x] above

	var ardetail = new Array();
	ardetail[0] = new Array("Travel","Dining", "Hotels");
	ardetail[1] = new Array("China","Hong Kong");
	ardetail[2] = "";
	ardetail[3] = "";
	
	// this array stores the localised detail names which corresponds to the detail names (in english) above
	// rule: ardetail_loc[x] corresponds with ardetail[x] above

	var ardetail_loc = new Array();
	ardetail_loc[0] = new Array("世界寰宇","精選美饌","機場飯店優惠");
	ardetail_loc[1] = new Array("中國","香港");
	ardetail_loc[2] = "";
	ardetail_loc[3] = "";
	
	// this array stores the url of the detail links which corresponds to the detail names above
	// eg. ardetail_url[0][x] corresponds with ardetail_loc[0] above. 
	// x denotes the item in the each of the array above. x starts from 0
	var ardetail_url = new Array();


	ardetail_url[0] = new Array();
	ardetail_url[0][0] = "/taiwan/travel/index.shtml";
	ardetail_url[0][1] = "/taiwan/dining/index.shtml";
	ardetail_url[0][2] = "/taiwan/hotels/index.shtml";

	ardetail_url[1] = new Array();
	ardetail_url[1][0] = "/greater_china/china/index.shtml";
	ardetail_url[1][1] = "/greater_china/hong_kong/index.shtml";

	ardetail_url[2] = "";

	ardetail_url[3] = "";


	// ******************************************************
	// Subdetails 
	// ******************************************************
	
	// these arrays store the subdetail names and urls (in english and localised names) which corresponds to the subsections and detail names above
	// rule: arsubdetail[x]/arsubdetail_loc[x] corresponds with ardetail[x] and arsubsection[x] above
	
	// if no subdetails available, declare as follows
	// arsubdetail[x] = "";
	// arsubdetail_loc[x] = "";

	var arsubdetail = new Array();	// subdetail names in english
	var arsubdetail_loc = new Array();	// localised subdetail names

	// No Subdetails for Taiwan
	arsubdetail[0] = "";
	arsubdetail_loc[0] = "";

	// No Subdetails for Greater China
	arsubdetail[1] = "";
	arsubdetail_loc[1] = "";

//	arsubdetail[1] = new Array();
//	arsubdetail[1][0] = new Array("Fashion","Sightseeing","Gifting","Relax","Comfort","Dining","Explore");
//	arsubdetail[1][1] = "";

//	arsubdetail_loc[1] = new Array();
//	arsubdetail_loc[1][0] = new Array("百貨商場","熱門景點","台灣特產","溫泉會館","景觀飯店","特色美饌","休閒遊樂");
//	arsubdetail_loc[1][1] = "";

	// No Subdetails for Airport
	arsubdetail[2] = "";
	arsubdetail_loc[2] = "";

	// No Subdetails for Golf
	arsubdetail[3] = "";
	arsubdetail_loc[3] = "";

// -->
