// JavaScript Document
 
// Set up the text files to be used.
var theText = new Array() // do not change this
 
 
theText[0] = '"I wanted to tell you how much we enjoyed Downhere. I think I am pretty hard to please when it comes to contemporary Christian music, but they were exceptionally good!"<div align="right"> - Andy B.</div>';
theText[1] = '"I just wanted to tell you what a great time we had at the show last night. I have not laughed that hard in I do not know how long. Thanks for providing good clean fun!"<div align="right"> - Teresa F.</div>';
theText[2] = '"I just wanted to say that the concert was FANTASTIC. You guys did an awesome job. The band was great!!! Everything was perfect!! Keep up the good work. We will definitely be back!!"<div align="right"> - Carol R.</div>';
theText[3] = 'Great show, my gut is still hurting from laughing so hard. My wife and I invited some family members and they had a great time as well."<div align="right"> - Ron H.</div>';



 
// do not edit anything below this line
 
var j = 0
var p = theText.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Array()
   preBuffer[i].src = theText[i]
}
var whichText = Math.round(Math.random()*(p-1));
function showText(){
//This a wrapper for the text array it can be changed if need
document.write('<p class="thetext">'+theText[whichText]+'</p>');
}