// Created 28 Nov 2007 By Brian Jenkins Media Synergies

// Create some configuration variables

var xChangeRate = 68.85;
var maxPersons = 8;
var bookingPercentage = 0;


// Tour Arrays populated with data

// Tour Names
var tourName = new Array();
tourName[0] = "Bangkok City and River Tour";
tourName[1] = "Ayutthaya Ancient City and Summer Palace";
tourName[2] = "Coral Island";
tourName[3] = "Tiger Temple and Bridge over River Kwai";
tourName[4] = "Swimming with Dolphins";

// Tour Codes
var tourCode = new Array();
tourCode[0] = "CS1";
tourCode[1] = "CS2";
tourCode[2] = "CS3";
tourCode[3] = "CS4";
tourCode[4] = "CS5";

// Base Prices as text for display ( For 2 Pax)
var tourBaseText = new Array();
tourBaseText[0] = "11,650";
tourBaseText[1] = "9,850";
tourBaseText[2] = "12,250";
tourBaseText[3] = "10,950";
tourBaseText[4] = "10,450";

// Base Prices as numbers for calculations ( For 2 Pax)
var tourBaseNum = new Array();
tourBaseNum[0] = "11650";
tourBaseNum[1] = "9850";
tourBaseNum[2] = "12250";
tourBaseNum[3] = "10950";
tourBaseNum[4] = "10450";

// Additional Pax Price per person as text for display
var tourExtraText = new Array();
tourExtraText[0] = "900";
tourExtraText[1] = "700";
tourExtraText[2] = "1,100";
tourExtraText[3] = "950";
tourExtraText[4] = "950";

// Additional Pax Price per person as numbers for calculations
var tourExtraNum = new Array();
tourExtraNum[0] = "900";
tourExtraNum[1] = "700";
tourExtraNum[2] = "1100";
tourExtraNum[3] = "950";
tourExtraNum[4] = "950";
