<!--
	// 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","Airport Privileges","/airport_privileges/index.shtml");
	arsubsection[1] = new Array("Golf","Golf","/golf/index.shtml");
	arsubsection[2] = new Array("Hotels","Hotels","/hotels/index.shtml");
	arsubsection[3] = new Array("Travel","Travel","/travel/index.shtml");
	arsubsection[4] = new Array("Trend Alert","Trend Alert","/trend_alert/index.shtml");
	arsubsection[5] = new Array("Uniquetravel","Unique Travel","/uniquetravel/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] = new Array("Airport Shopping","Airport Travel Assist");
	ardetail[1] = new Array("Golf for Less","Discounted Access");
	ardetail[2] = new Array("Asia Pacific","Worldwide");
	ardetail[3] = new Array("Car Rental","Shanghai Expo");
	ardetail[4] = new Array("2010 Summer","2010 Spring","2009 Winter","2009 Autumn");
	ardetail[5] = new Array("Quintessentially Escape");

	// 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("Airport Shopping","Airport Travel Assist");
	ardetail_loc[1] = new Array("Golf for Less","Discounted Access");
	ardetail_loc[2] = new Array("Asia Pacific","Worldwide");
	ardetail_loc[3] = new Array("Car Rental","Shanghai Expo 2010");
	ardetail_loc[4] = new Array("2010 Summer","2010 Spring","2009 Winter","2009 Autumn");
	ardetail_loc[5] = new Array("Quintessentially Escape");

	// 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] = "/airport_privileges/airport_shopping/index.shtml";
	ardetail_url[0][1] = "/airport_privileges/airport_travel_assist/index.shtml";

	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] = new Array();
	ardetail_url[2][0] = "/hotels/asia_pacific/index.shtml";
	ardetail_url[2][1] = "/hotels/worldwide/index.shtml";

	ardetail_url[3] = new Array();
	ardetail_url[3][0] = "/travel/car_rental/index.shtml";
	ardetail_url[3][1] = "/travel/shanghai_expo/shanghai_expo10.shtml";

	ardetail_url[4] = new Array();
	ardetail_url[4][0] = "/trend_alert/2010_summer/index.shtml";
	ardetail_url[4][1] = "/trend_alert/2010_spring/index.shtml";
	ardetail_url[4][2] = "/trend_alert/2009_winter/index.shtml";
	ardetail_url[4][3] = "/trend_alert/2009_autumn/index.shtml";

	ardetail_url[5] = new Array();
	ardetail_url[5][0] = "/uniquetravel/quintessentially_escape/index.shtml";

	
	// ******************************************************
	// 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 Subdetail list for Airport Privileges
	arsubdetail[0] = "";
	arsubdetail_loc[0] = "";

	// No Subdetail list for Golf
	arsubdetail[1] = "";
	arsubdetail_loc[1] = "";

	// Subdetail list for Hotels
	arsubdetail[2] = "";
	arsubdetail_loc[2] = "";
	
	// No Subdetails for Travel
	arsubdetail[3] = "";
	arsubdetail_loc[3] = "";

	// No Subdetails for Trend Alert
	arsubdetail[4] = "";
	arsubdetail_loc[4] = "";

	// No Subdetails for Unique Travel
	arsubdetail[5] = "";
	arsubdetail_loc[5] = "";


// -->