var arrTours = new Array;
var arrToursDates = new Array;
var arrPrices = new Array;
var TourYear = 2007
var EuroRate = 1.96

// enter all available tours here

arrTours[0] = "Tour (A) Panorama - 13 days";
arrTours[1] = "Tour (B) South-East - 8 days";



// enter dates for each of tours
// the date should be prefixed with index of it's tour and
// separated from them with ":"

arrToursDates[0] = "0:06 - 18 May 2007";
arrToursDates[1] = "0:09 - 21 September 2007";
arrToursDates[2] = "1:18 - 25 June 2007";
arrToursDates[3] = "1:06 - 13 August 2007";

arrPrices[0] = 1171;
arrPrices[1] = 929;
arrPrices[2] = 767;
arrPrices[3] = 583;