﻿<!--
	// path of this section
	var urlpath = "/signature/" + website + "/benefits";
	
	// 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("Airport Privileges","亞太地區國際機場<br>購物禮遇","/airport_privileges/airport_shopping/index.shtml");
	arsubsection[1] = new Array("Golf","高爾夫巡禮","/golf/index.shtml");
//	arsubsection[2] = new Array("Greater China","Visa大中華區尊榮優惠","http://www.visasignature-asia.com/signature/tw/privileges/greater_china/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] = new Array("Golf for Less");
//	ardetail[1] = new Array("Golf for Less","Discounted Access");

//	ardetail[2] = "";
	
	// 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] = new Array("Golf for Less");
//	ardetail_loc[1] = new Array("Golf for Less","通行世界200家最佳<br>高爾夫俱樂部");

//	ardetail_loc[2] = "";

	// 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] = new Array();
	ardetail_url[1][0] = "/golf/golf_for_less/index.shtml";
//	ardetail_url[1][1] = "/golf/discounted_access/index10.shtml";

//	ardetail_url[2] = "";

	
	// ******************************************************
	// 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 Airport Privileges
	arsubdetail[0] = "";
	arsubdetail_loc[0] = "";

	// No Subdetails for Golf
	arsubdetail[1] = "";
	arsubdetail_loc[1] = "";

	// No Subdetails for Greater China
//	arsubdetail[2] = "";
//	arsubdetail_loc[2] = "";
	
	// 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] = "";
	

// -->