//encoding: utf-8

//User variables
var GstrLang = "en";
var MONTH_NAMES=['January','February','March','April','May','June','July','August','September', 'October','November','December','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep', 'Oct','Nov','Dec'];
var DAY_NAMES=['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sun','Mon','Tue','Wed','Thu','Fri','Sat'];
var DAY_HEADERS = ["Su","Mo","Tu","We","Th","Fr","Sa"];

var GaText = [];
GaText[0] = "From";
GaText[1] = "To";
GaText[2] = "Please choose the airport you're departing from.";
GaText[3] = "Please choose your destination.";
GaText[4] = "The date you have chosen is in the past. Unfortunately we're not yet a time travel company. Please try again.";
GaText[5] = "The date you have chosen is not valid. Please try again.";
GaText[6] = "Your departure must be BEFORE your arrival.";
GaText[7] = "You have chosen to depart and arrive on the same day. Are you sure you want to continue?";
GaText[8] = "You have chosen today as a departure day. Only flights that leave at least three hours from now will be shown on step 2 of the booking process.";
GaText[9] = "You can only book one infant per adult online. Please visit our Help Centre for more information.";
GaText[10] = "Infants cannot travel alone. Please add at least one adult for every infant in your booking.";
GaText[11] = "There are no passengers in your booking. To continue, please add at least one passenger.";
GaText[12] = "You are booking one or more unaccompanied minors, ages 2-12. Please proceed with your booking. You do not have to contact us until you fill in the contact details at check-in. Note that our special price for children does not apply to unaccompanied minors. Please visit our Help Centre for further information on unaccompanied minors.";
GaText[13] = "Return";
GaText[14] = "Type of Booking";
GaText[15] = "Return";
GaText[16] = "One Way";
GaText[17] = "Open Jaw";
GaText[18] = "From/To";
GaText[19] = "First leg";
GaText[20] = "Second leg";
GaText[21] = "Flying out on";
GaText[22] = "Returning on";
GaText[23] = "Passengers";
GaText[24] = "No adults";
GaText[25] = "adult";
GaText[26] = "adults";
GaText[27] = "No children";
GaText[28] = "child";
GaText[29] = "children";
GaText[30] = "Under 12 years";
GaText[31] = "No infants";
GaText[32] = "infant";
GaText[33] = "infants";
GaText[34] = "Under 2 years";
GaText[35] = "Choose currency";
GaText[36] = "Are you booking a trip for more than 10 passengers? In that case, choose OK to go to Group Bookings and continue with your booking. Choose Cancel to go back to booking for 1-10 passengers.";
GaText[37] = "Please choose a date for your second flight.";
GaText[38] = "Please choose a date for your return flight.";
GaText[39] = "Please choose a date for your flight out.";
GaText[40] = "Please choose a date for the first flight in your booking.";
GaText[41] = "Please choose a date for the second flight in your booking.";
GaText[42] = "Please choose a destination for your second flight.";

var GaAirports = [
//"    | --------------------------",
  "AAL | Aalborg",
  "AEY | Akureyri",
  "ALC | Alicante",
  "BCN | Barcelona",
  "BSL | Basel",
  "SXF | Berlin Schonefeld",
  "BLL | Billund",
  "BLQ | Bologna",
  "CPH | Copenhagen",
  "HHN | Frankfurt Hahn",
  "FDH | Friedrichshafen",
  "GDN | Gdansk",
  "GVA | Geneva",
  "GOT | Gothenburg",
  "INN | Innsbruck",
  "KRK | Krakow",
  "LON | London (All airports)",
  "LGW | London Gatwick",
  "STN | London Stansted",
  "LUX | Luxemburg",
  "BGY | Milan Bergamo",
  "EWR | New York Newark",
  "OSL | Oslo",
  "SFB | Orlando",
  "CDG | Paris Charles de Gaulle",
  "KEF | Reykjavik",
  "RTM | Rotterdam",
  "WAW | Warsaw",
  "YWG | Winnipeg"
];

var GaMonths = "January,February,March,April,May,June,July,August,September,October,November,December".split(',');
var GaWeekdays = "Sun,Mon,Tue,Wed,Thu,Fri,Sat".split(',');

var GaCurencies = [
   "US Dollars | USD",
   "British Pounds | GBP",
   "Canadian Dollars | CAD",
   "Euros | EUR",
   "Danish Krone | DKK",
   "Swedish Krone | SEK",
   "Norwegian Krone | NOK"
];

GaGroupBookUrl = '/booking/groups_11+/';
