<!--

// Define quote array structure
var theQuotes = new Array();

// Enter quote data

theQuotes[0] = new Array('"Dazzling ... an increasingly artful and popular form of stage entertainment."','Sports Illustrated');
theQuotes[1] = new Array('"ComedySportz is creative chaos, slapstick silliness and some truly funny business."','Houston Chronicle');
theQuotes[2] = new Array('"Novel, indeed, revolutionary!"','Drama-Logue');
theQuotes[3] = new Array('"They\'re inventive, refreshingly cynical and their good humor is infectious."','Houston Metropolitan Magazine');
theQuotes[4] = new Array('"A laugh-a-minute evening of fun."','San Antonio Express News');
theQuotes[5] = new Array('"The real winners are the spectators, who are treated to one of the funniest evenings they may have had in a long time."','Milwaukee Magazine');
theQuotes[6] = new Array('"We left there in the best moods, vowing to go see it again and again. We laughed hysterically the entire time!"','K. Busby');
theQuotes[7] = new Array('"Thank you for offering such a refreshing type of humor to Houston. We shall return!"','B.G. Hornbeck');
theQuotes[8] = new Array('"I can\’t tell you how refreshing it was to find a place that I could bring a group of teenagers to and not worry about content or language."','K. Payne');
theQuotes[9] = new Array('"You were true to your word, it was a clean and hilarious show. We all laughed until our faces hurt!"','K. Payne');
theQuotes[10] = new Array('"Even our most serious attorney was laughing!"','Jim Adler \& Associates');
theQuotes[11] = new Array('"ComedySportz shows are always fresh, fun and creative."<br>','American General');
theQuotes[12] = new Array('"Thank you for your extraordinary presentation."','Baylor College of Medicine');
theQuotes[13] = new Array('"Thank you for the outstanding entertainment that we received at our company function."','The Fuji Bank, Limited');
theQuotes[14] = new Array('"It\’s so nice to have clean entertainment in a setting where people can interact with one another."','First Colony Bible Chapel');
theQuotes[15] = new Array('"I am amazed every time I watch what ComedySportz puts together."<br>','Houston\’s First Baptist Church');
theQuotes[16] = new Array('"WOW!!! The show was FANTASTIC!!! Definitely fun for everyone! Thanks for providing such a clean, fun, family atmosphere!"','S. Dunn');
theQuotes[17] = new Array('"This ComedySportz troupe is much funnier and more talented than Second City in Toronto!"','St. Michael\’s Episcopal Church');
theQuotes[18] = new Array('"This is the funniest stuff I\’ve ever seen. And I\’ve seen funny!"<br>','Tri Systems Tracer');
theQuotes[19] = new Array('"It was well above my expectations."','Challenge Construction Company');
theQuotes[20] = new Array('"Thank you for making our yearly Christmas party the best one ever!"<br>','Coastal Surgical Group');
theQuotes[21] = new Array('"The whole night was a big success, and we even overheard someone say that it was our best Singles event so far!"<br>','Second Baptist Church West');

// Define function that shows random quote
function showQuote() {
  // Get another random number
  q = theQuotes.length;
  var whichQuote = Math.round(Math.random() * (q - 1));

  // Display random quote
  document.write('<span class="quote1">');
  document.write(theQuotes[whichQuote][0]);
  document.write('<\/span> - <span class="quote2">');
  document.write(theQuotes[whichQuote][1] + '<\/span>');
}
//-->