var qArr = new Array();
qArr[0] = ["Ron Atkinson", "Well, either side could win it, or it could be a draw."];
qArr[1] = ["John Kruk", "I'm not an athlete. I'm a professional baseball player."];
qArr[2] = ["Reggie Jackson", "The only reason I don't like playing in the World Series is I can't watch myself play."];
qArr[3] = ["Don Sutton", "I am the most loyal player money can buy."];
qArr[4] = ["Tug McGraw", "Always root for the winner. That way you won't be disappointed."];
qArr[5] = ["Mike Greenwell", "I'm a 4-wheel-drive pickup type of guy. So is my wife."];
qArr[6] = ["Terry Bradshaw", "I may be dumb, but I'm not stupid."];
qArr[7] = ["RB George Rogers", "I want to rush for 1,000 or 1,500 yards, whichever comes first."];
qArr[8] = ["Jason Kidd", "We're going to turn this team around 360 degrees."];
qArr[9] = ["Greg Norman", "I owe a lot to my parents, especially my mother and father."];
qArr[10] = ["Alberto Tomba", "I really lack the words to compliment myself today."];
qArr[11] = ["Bud Grant", "Show me a good loser and I'll show you a loser"];
qArr[12] = ["Rick Sutcliffe", "A player usually hits around his average."];
qArr[13] = ["Dizzy Dean", "The doctors x-rayed my head and found nothing"];
qArr[14] = ["Ralph Kiner", "Today is Father's Day, so to all you fathers out there: 'Happy Birthday'"];
qArr[15] = ["Rodney Dangerfield",  "I went to a boxing match the other night, and a hockey game broke out."];
qArr[16] = ["Yogi Berra", "The other teams could make trouble for us if they win."];
qArr[17] = ["Yogi Berra", "I didn't really say everything I said."];
qArr[18] = ["John Heisman", "Gentlemen, it is better to have died as a small boy than to fumble this football."];
qArr[19] = ["Beano Cook", "It's crazy. We spend more money on the Heisman than the Pentagon spends on toilets."];
qArr[20] = ["Bud Grant", "He's the kind of player who usually comes along rarely and sometimes never."];
qArr[21] = ["Bear Bryant", "Winning isn't everything, but it beats anything that comes in second."];
qArr[22] = ["Jimmy Connors", "I hate losing more than I love winning."];
qArr[23] = ["Lou Holtz", "The problem with having a sense of humor is often that people you use it on aren't in a very good mood."];
qArr[24] = ["Rogers Hornsby", "I don't want to play golf. When I hit a ball, I want someone else to go chase it."];
qArr[25] = ["Woody Hayes", "Statistics always remind me of the fellow who drowned in a river where the average depth was only three feet."];
qArr[26] = ["Ted Turner", "If I only had a little humility, I'd be perfect."];
qUsed = new Array();

function quotesQ(){
	x=gUQ();
	document.open();
 	document.write(qArr[x][1]+" - "+qArr[x][0]);
	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;
}
