
var qArr = new Array();
// Add quotes here.

qArr[00] = ["Tiffany Barnes", "I was always the odd girl."];
qArr[01] = ["Tiffany Barnes", "If it was brilliant, it was probably me."];
qArr[02] = ["Isaac Ashby", "Follow the plane, it'll lead us to water!"];
qArr[03] = ["Isaac Ashby", "You keep the rhythm... I'll do all the moves !"];
qArr[04] = ["Holly Suisse", "Why do I suddenly feel like I'm country dancing?"];
qArr[05] = ["Jill Sundberg", "[The] brackets are technical... WE DON'T LIKE THEM!!!"];
qArr[06] = ["Jimmy Suisse", "Sorry, the horns made me do that."];
qArr[07] = ["Jeremy Weight", "Style? What the heck is that?"];
qArr[08] = ["Tiffany Barnes", "That's MISS Booty Shaker to you!"];
qArr[09] = ["Isaac Ashby", "I'm losing my hips!"];
qArr[10] = ["Jimmy Suisse", "I'm not late. &nbsp I'm just hanging on the time."];
qArr[11] = ["Holly Suisse", "It won't take much to wow people who've never danced before."];
qArr[12] = ["Jeremy teaching Charleston", "It is that kicky thing. &nbsp It's cool."];
qArr[13] = ["Allan Ambrose", "Did you just say your name was Happy?"];
qArr[14] = ["Jimmy Suisse", "Isaac, have I ever told you you look kind of like a young Patrick Stewart?"];
qArr[15] = ["Ginny Peterson", "I can see you guys as Otter Pop eaters..."];
qArr[16] = ["Ron Capunay", "I like the cut of your jib!"];
qArr[17] = ["Jill Sundberg", "DDR Club... Isn't that the Dungeons & Dragons Roleplaying club?"];
qArr[18] = ["Anonymous", "I'm glad you didn't buy that kind of hat.  It looks like she's wearing a dead animal on her head."];
qArr[19] = ["Anonymous", "We're too innocent to be 'Utah Blues' dancers."];
qArr[20] = ["Joanna Johnson", "If sugar and Evil had a baby, that would be Splenda."];
qArr[21] = ["Emilee King", "I'll move so you can climb out from under the table if you want."];
qArr[22] = ["Conversation between Emilee King and Steven Ward", "Emilee: Whenever I'm wearing a skirt, I wish I had pants.<br>Steven: Hey, <i>I'M</i> wearing pants...<br>"];
qArr[23] = ["Quoted on the Denver 2007 Swing Trip", "Justen: Where's Costco?  Is it on the other side of Sears?  The <i>softer</i> side of sears?<br>Tiffany: You're kind of a dork."];
qArr[24] = ["Bonnie Varga", "We must be getting closer because everything's getting cuter!"];
qArr[25] = ["Kate Rouse", "(Upon hearing that married people get pampered on Swing trips) I needed to find a make-shift husband..."];
qArr[26] = ["Susa Lindsey", "Am I going to be hated and disliked because I'm at a formal dance in shorts?"];
qArr[27] = ["Susa Lindsey", "If somebody does not tip this waitress well, I will personally drop kick you!"];
qArr[28] = ["Club President, Ben Sundberg", "Giving money is always a good thing."];
qArr[29] = ["Kayla Butcher", "(upon seeing Ben and Jill kissing) Oh Gross!! I could hear noises! ... It was kind of cute, but still slurpy"];
qArr[30] = ["Emilee King", "Hold it... there's a blanket in my shoe."];
qArr[31] = ["Emilee King", "How come every time I say something stupid, Jimmy writes it down?"];


qUsed = new Array();

function BTJSputQ(){
	x=gUQ();
	document.open();
 	document.write("<font face='Geneva, Arial, Helvetica, san-serif' size='2'><b><font style='color: #6699DD;'><u>Swing Club Quote:</u></font></b><br />"+qArr[x][1]+" <br />--<I>"+qArr[x][0]+"</I></font>");
	document.close();
}

function gUQ(){
	z=false;x=0;
	for(var i=0;i<1;){x=Math.floor(Math.random()*(qArr.length));if(checkIt(x)) i = 1;}
	qUsed[qUsed.length] = x;return x;
}

function checkIt(val){
	for(i=0;i<qUsed.length;i++){if(qUsed[i]==val){return false;}}
	return true;
}
