var theText = new Array();
var whichText;

// To add more files, continue with the pattern below, adding to the array.  Note: no carriage returns are allowed

theText[0] = new Array('<span class="standard">ComedySportz is the perfect venue for any occasion. Birthday parties, corporate outings, church groups, bachelorette parties, recruitment events, date parties - you name it, we\’ve made them laugh!</span>' +
    '<br><br><span class="titles">Here\’s what we offer:</span><ul><span class="standard"><li>A fully-improvised, audience-interactive 90-minute ComedySportz show.</li><li>A handicapped-accessible, non-smoking 120-seat performance space.</li><li>Discounts are available for groups of 10 or more at evening ComedySportz matches.</li><li>Conveniently located on the southeast corner of I-10 West and the Sam Houston Tollway, with free parking.</li><li>ComedySportz is appropriate for all ages! We pride ourselves on being a clean show, so whether you are entertaining corporate clients or children, you can always trust ComedySportz to be good, clean fun!</li></span></ul><b>Group Sales Ha-Ha-Hotline 713.868.1444</b><br><br><span class="standard">Private, customized shows are also available any day, at any time. We look forward to making your event a memorable one for everyone!</span><br>&nbsp;','<!--DWLayoutEmptyCell-->&nbsp;','<a href="#" onClick="showGroup(1)" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'next\',\'\',\'images/next_button_ro.gif\',1)"><img src="images/next_button.gif" name="next" width="80" height="24" border="0"></a>');
theText[1] = new Array('<span class="titles">What does it cost?</span><ul><span class="standard"><li>Regular admission to our Friday and Saturday night matches are $16 per person.</li><li>Groups of 10 to 24 can receive a group rate of $14 per person. Groups of 25 or more can receive a group rate of $12 per person. All seats must be paid for when the reservation is made. <a href="mailto:houston@comedysportzhouston.com">E-mail</a> us for more information.</li><li>Payment may be made by check or credit card (Visa, Mastercard, Discover, American Express).  Increases in the reservation number are allowed until 12pm (noon) the day of the match, however, those seats must be paid for when they are requested.</li><li>Checks should be made payable to ComedySportz and mailed to P.O. Box 701277, Houston, TX 77270.</li><li>There will be no refunds for unused seats.</li></span></ul><b>Group Sales Ha-Ha-Hotline 713.868.1444</b>','<a href="#" onClick="showGroup(0)" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'prev\',\'\',\'images/prev_button_ro.gif\',1)"><img src="images/prev_button.gif" name="prev" width="80" height="24" border="0"></a>','<!--DWLayoutEmptyCell-->&nbsp;');

//var intWhich = 0;
function showGroup(whichText)
{
  if(document.all) //IE
  {var objContent = document.all.ContentArea;
  var objContent2 = document.all.ContentPrev;
  var objContent3 = document.all.ContentNext;}
  else if(document.layers) //Nav4
  {var objContent = document.layers.ContentArea;
  var objContent2 = document.layers.ContentPrev;
  var objContent3 = document.layers.ContentNext;}
  else if(document.getElementById) //Standard
  {var objContent = document.getElementById("ContentArea");
  var objContent2 = document.getElementById("ContentPrev");
  var objContent3 = document.getElementById("ContentNext");}

  objContent.innerHTML = theText[whichText][0];
  objContent2.innerHTML = theText[whichText][1];
  objContent3.innerHTML = theText[whichText][2];
}

