// two dimensional array represents the season schedule// each group represents a week// the first entry is the opener film// the second entry is the headline film// the third entry is the date which must conform to the// current format						var arrSeasonSchedule = [ 	["Saturday, July 10", "Raising Arizona", "July 11, 2010"],	["Saturday, July 17", "Princess Bride", "July 18, 2010"],	["Saturday, July 24", "Top Gun", "July 25, 2010"],	["Saturday, July 31", "The Sound of Music", "August 1, 2010"],	["Saturday, August 7", "Monty Python and the Holy Grail", "August 8, 2010"],	["Saturday, August 14", "The Big Lebowski", "August 15, 2010"],	["Saturday, August 21", "Up", "August 22, 2010"],    ["Thanks again", "for a fantastic season!", "July 01, 2011"]];var today = new Date();var msg = "";var i=0;var located = false;var OCfeature = null;var OCopener = null;while (i<arrSeasonSchedule.length && !located){	arrSeasonSchedule[i][2] = new Date(arrSeasonSchedule[i][2]);	if(arrSeasonSchedule[i][2] > today){		located = true;		OCfeature = arrSeasonSchedule[i][0];		OCopener = arrSeasonSchedule[i][1];	}	i++;}