var tour = new Array();

function tourType(tourCode, tourName, tourSummary, startDate, spaceLeft) {
   this.tourCode = tourCode;
   this.tourName = tourName;
   this.tourSummary = tourSummary;
   this.startDate = startDate;
   this.spaceLeft = spaceLeft;
}

var count = 0

tour[count++] = new tourType("mot1","Motmot (Feb.)","",mot1S,mot1);
tour[count++] = new tourType("ltr1","La Tortuga (March)","",ltr1S,ltr1);
tour[count++] = new tourType("mot2","Motmot (June)","",mot2S,mot2);
tour[count++] = new tourType("mot3","Motmot (Nov.)","",mot3S,mot3);
