var totalquotes = 9;
var quotes = new Array(totalquotes+1);
quotes[0]="I haven't laughed that hard for that long or been that thoroughly entertained in many years!";
quotes[1]="To see so much talent in one place is amazing.";
quotes[2]="The show is different every weekend, and always wonderfully entertaining.";
quotes[3]="Oh my gosh!!! We had a blast at Rockbox Theater!!! It was great music, lots & lots of laughs & plenty of talent.";
quotes[4]="My teenaged daughter said it was the highlight of her trip.  We didn't want it to end!!";
quotes[5]="This is high quality entertainment that never disappoints.";
quotes[6]="We get good food and super shopping in Fredericksburg...but we go for the Rockbox!";
quotes[7]="Good, clean family fun is hard to come by these days but you can find it  in Fredericksburg at the Rockbox Theater.";
quotes[8]="I will bring my teenage granddaughter along next time as the entertainment transcends age. Good value for the $$ spent also!";

function rndnumber()
{ 
	var randscript = -1;
	while(randscript < 0 || randscript == totalquotes || isNaN(randscript))
	{ 
		randscript = parseInt(Math.random()*(totalquotes+1)) 
	}
	return randscript 
}

quo = rndnumber();
quox = quotes[quo];
document.write(quox);