﻿<!--
	// path of this section
	var urlpath = "/premium/signature/" + website;
	
	// 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","Visa御璽卡卓越精選","/privileges/taiwan/index.shtml");
	arsubsection[1] = new Array("Airport Privileges","機場優惠","/benefits/airport_privileges/index.shtml");
	arsubsection[2] = new Array("Hotels","頂級住房禮遇 ","/benefits/hotels/index.shtml");
	arsubsection[3] = new Array("Travel","旅遊","/benefits/travel/index.shtml");
	arsubsection[4] = new Array("Golf","高爾夫巡禮","/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] = "";
	ardetail[1] = "";
	ardetail[2] = "";
	ardetail[3] = "";
	ardetail[4] = "";
	
	// 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] = "";
	ardetail_loc[1] = "";
	ardetail_loc[2] = "";
	ardetail_loc[3] = "";
	ardetail_loc[4] = "";
	
	// 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] = "";
	ardetail_url[1] = "";
	ardetail_url[2] = "";
	ardetail_url[3] = "";
	ardetail_url[4] = "";


	// ******************************************************
	// 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

	arsubdetail[0] = "";
	arsubdetail_loc[0] = "";

	arsubdetail[1] = "";
	arsubdetail_loc[1] = "";

	arsubdetail[2] = "";
	arsubdetail_loc[2] = "";

	arsubdetail[3] = "";
	arsubdetail_loc[3] = "";

	arsubdetail[4] = "";
	arsubdetail_loc[4] = "";

// -->

