﻿<!--
	// 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("India","India","/india/index.shtml");
	arsubsection[1] = new Array("Malaysia","Malaysia","/malaysia/index.shtml");
	arsubsection[2] = new Array("Singapore","Singapore","/singapore/index.shtml");
	arsubsection[3] = new Array("Thailand","Thailand","/thailand/index.shtml");
	arsubsection[4] = new Array("Visagoexplore.com","Visagoexplore.com","http://www.visagoexplore.com");

	
	// 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("Signature Exclusive Offers");
	ardetail[1] = new Array("Premium Offers");
	ardetail[2] = new Array("Entertainment","Wellness");
	ardetail[3] = new Array("Visa Premium Access");
	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] = new Array("Signature Exclusive Offers");
	ardetail_loc[1] = new Array("Premium Offers");
	ardetail_loc[2] = new Array("Entertainment","Wellness");
	ardetail_loc[3] = new Array("Visa Premium Access");
	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] = new Array();
	ardetail_url[0][0] = "/india/signature_exclusive_offers/index.shtml";

	ardetail_url[1] = new Array();
	ardetail_url[1][0] = "/malaysia/premium_offers/index.shtml";

	ardetail_url[2] = new Array();
	ardetail_url[2][0] = "/singapore/entertainment/index.shtml";
	ardetail_url[2][1] = "/singapore/wellness/index.shtml";

	ardetail_url[3] = new Array();
	ardetail_url[3][0] = "/thailand/visa_premium_access/index.shtml";

	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
	
	// Subdetails for India - Travel only
//	arsubdetail[0] = new Array();
//	arsubdetail[0][0] = new Array("Adventure Quests","Heritage Trails","In Touch With Nature","Living It Up");

//	arsubdetail_loc[0] = new Array();
//	arsubdetail_loc[0][0] = new Array("Adventure Quests","Heritage Trails","In Touch With Nature","Living It Up");

	// No Subdetails for India
	arsubdetail[0] = "";
	arsubdetail_loc[0] = "";

	// No Subdetails for Malaysia
	arsubdetail[1] = "";
	arsubdetail_loc[1] = "";

	// No Subdetails for Singapore
	arsubdetail[2] = "";
	arsubdetail_loc[2] = "";

	// No Subdetails for Thailand
	arsubdetail[3] = "";
	arsubdetail_loc[3] = "";

	// No Subdetails for Visa Go Explore
	arsubdetail[4] = "";
	arsubdetail_loc[4] = "";



// -->
