

// data in the SEASON array is 0=Name; 1=URL; 2=opening date; 3=closing date; 4=dates in text
// dates are in form yyyy-mm-dd
// ensure all productions are in date order

// Use the following for single and double quotes:
// replace " with &quot;
// replace ' with &#39;

var season = [
[
"Ruthless! The Musical",
"/shows/11-12/ruthless.html",
"2011-08-12",
"2011-08-28",
"August 12-28, 2011"
],
[
"Woman in Black",
"/shows/11-12/woman.html",
"2011-10-07",
"2011-10-23",
"October 7-23, 2011"
],
[
"The Miss Firecracker Contest",
"/shows/11-12/firecracker.html",
"2012-02-10",
"2012-02-26",
"February 10-26, 2012"
],
[
"The Crucible",
"/shows/11-12/crucible.html",
"2012-04-13",
"2012-04-29",
"April 13-29, 2012"
],
[
"The Boy Friend",
"/shows/11-12/boyfriend.html",
"2012-06-08",
"2012-06-24",
"June 8-24, 2012"
]

]

