﻿<!--
	// 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");

	
	// ******************************************************
	// Details 
	// ******************************************************
	
	// 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] = "";

	// Subdetail list for Detail - Golf
//	arsubdetail[0] = new Array();
//	arsubdetail[0][0] = new Array("Complimentary Golf");
//	arsubdetail[0][1] = new Array("Complimentary Golf","Discounted Golf");
//	arsubdetail[0][2] = new Array("Complimentary Golf","Discounted Golf");
//	arsubdetail[0][3] = new Array("Complimentary Golf","Discounted Golf");
//	arsubdetail[0][4] = new Array("Complimentary Golf","Discounted Golf");
//	arsubdetail[0][5] = new Array("Complimentary Golf","Discounted Golf");
//	arsubdetail[0][6] = new Array("Complimentary Golf","Discounted Golf");
//	arsubdetail[0][7] = new Array("Complimentary Golf");
//	arsubdetail[0][8] = new Array("Complimentary Golf","Discounted Golf");
//	arsubdetail[0][9] = "";
//	arsubdetail[0][10] = "";
	
//	arsubdetail_loc[0] = new Array();
//	arsubdetail_loc[0][0] = new Array("免果嶺費優惠");
//	arsubdetail_loc[0][1] = new Array("免果嶺費優惠","果嶺費減半優惠");
//	arsubdetail_loc[0][2] = new Array("免果嶺費優惠","果嶺費減半優惠");
//	arsubdetail_loc[0][3] = new Array("免果嶺費優惠","果嶺費減半優惠");
//	arsubdetail_loc[0][4] = new Array("免果嶺費優惠","果嶺費減半優惠");
//	arsubdetail_loc[0][5] = new Array("免果嶺費優惠","果嶺費減半優惠");
//	arsubdetail_loc[0][6] = new Array("免果嶺費優惠","果嶺費減半優惠");
//	arsubdetail_loc[0][7] = new Array("免果嶺費優惠");
//	arsubdetail_loc[0][8] = new Array("免果嶺費優惠","果嶺費減半優惠");
//	arsubdetail_loc[0][9] = "";
//	arsubdetail_loc[0][10] = "";
	

// -->
