

///////////////////////////////////////////////////////////////////////////////////////////////
/* 	ponder.js
	Code was created by C. Eton. Statement author unknown.  
 
 	Only 1 item need to be edited:

	1.  The Statements array variable.

*///////////////////////////////////////////////////////////////////////////////////////////////



///////////////////////////////////////////////////////////////////////////////////////////////
// List the statements to display.  Add statements as necessary.  


var Statements = new Array(
'I can\'t go to Spurs any more it upsets me too much\. <br><b>Skinny and Fat Paul Gascoigne\.</b> ',
'I am going to make this the greatest club in the world\. <br><b>You succeeded Mr Chapman\.</b> ', 
'That\'s bread and butter straight down the goalkeeper\'s throat\.<br><b> Andy Gray\</b>. ', 
'It\'s super important to show your character\.<br><b> Cesc\'s Dad\</b>. ',
'When you have ten pounds you don\'t spend eleven\.<br><b> Sir Wenger</b>. ',
'I was formulated here\.<b> Liam Brady\</b>. ',
'I am unbeaten v Tottenham\, I love saying that\.<br><b> Thierry Henry\</b>. ',
'I am big enough\.<b> You can say that again\, Frank Lampard\</b>. ',
'We are all in the same bucket\.<br><b> Robby Bobson\</b>. ',
'We need to get that point as soon as possible\. The tooter the sweeter\.<br><b> Robby Bobson\</b>. ',
'He hits it into the corner of the net as straight as a nut\. <br><b>David Pleat\.</b> ', 
'There\'s Thierry Henry, exploding like the French train that he is\. <br><b>David Pleat\.</b> ', 
'Keep up your reputation for sportsmanship\. Don\'t barrack the referee\. <br><b>Tom Whittaker\.</b> ', 
'With a great name like ours only success is good enough\. <br><b>Don Howe\.</b> ',
'We are going for the double\.<br><b> Frank McLintock 1971\.</b>',
'There is no way we were going to be beaten\.<br><b> Bertie Mee Post \'71 WHL\.</b>',
'My first football memory was Charlie George\'sgoal in 1971\.<br><b> Paul Davis\.</b>',
'The first man in a tackle never gets hurt\.<br><b> Wilf Copping\.</b>',
'As far as I am concerned Tony Adams in like the Empire State Building\.<br><b> Ian Wright\.</b>',
'I play on the right\, Tony on the left and we\'ll deal with anyone\.<br><b> Martin Keown\.</b>',
'The star of the season was the squad\.<br><b> Arsene Wenger\.</b>',
'I\'ve never been a goalscorer\, only own goals\. Good own goals\.<br><b> Steve Bould\.</b>',
'If you selected a team of nice people\, David Rocastle would be captain\.<br><b> David \'O Leary\.</b>',
'Sunderland\! It\'s there\! I swear I do not believe it\!\.<br><b> Peter Jones \'79 Cup Final\.</b>',
'Happy those who can remain at Highbury\.<br><b> Jane Austen\.</b>',
'We all want to be the best and I believe I can be the best with Arsenal. \.<br><b> Arsene Wenger\.</b>',
'I love wearing my Arsenal shirt and I get a very special feeling every time\.<br><b> Thierry Henry\.</b>',
'I want to explode with Arsenal\.<br><b> Sylvain Wiltord\.</b>',
'Second in the league might be enough somewhere else\, but not at Arsenal\.<br><b> Martin Keown\.</b>',
'Marriage usually stabilises\. <br>It gives players a natural discipline - they have to go home\.<b> AW\.</b>',
'If you lose hope or lose belief\, you might as well get out of football\.<br><b> George Graham\.</b>',
'I supported Chelsea\, but my Dad was a big Arsenal fan so I went to Arsenal\.<br><b> The Merse\.</b>',
'To play for the club you support is a dream come true\.<br><b> Ashley Cole\.</b>',
'Only the players are important\, I am not important\.<br><b> Bertie Mee\.</b>',
'I would never play in England in another shirt other than Arsenals \.<br><b> Patrick Vieira\.</b>',
'I like to do my tricks and when I see the keeper\, I have to take him on\.<br><b> Kanu\.</b>',
'Kanu is Kanu\, he is the man\.<br><b> Thierry Henry\.</b>',
'All that was on my mind was Bruce Grobelaar\.<br><b> Michael Thomas\, 1989\.</b>',
'I have not a single bad word to say for The Arsenal \- it is a great club\.<br><b> Charlie Nicholas\.</b>',
'A move like this only happens once in a lifetime\.<br><b> Clive Allen\.</b>',
'Look at that\. Look at that\.<br><b> John Motson on Liam Bradys goal at White Hart Lane\.</b>',
'Ian Wright Wright Wright\, so good they named him thrice\.<br><b> Jonathan Pearce\.</b>',
'To me he will always be the Romford Pele\.<br><b> Overmars on Parlour\.</b>',
'Petit borrowed cash from Alan Sugar to take a cab to Highbury and sign for Arsenal\.<br><b> The Sun\.</b>',
'Sometimes there is nothing better in life than being a Gooner\.<br><b> Kevin Campbell\.</b>',
'He has given us unbelievable belief\.<br><b> Paul Merson on Arsene Wenger\.</b>',
'Arsene who\?\.<br><b> Daily Express Journalist\.</b>',
'To be mentioned in the same breath as Cliff Bastin and Ted Drake is a great honour\.<br><b> Ian Wright\.</b>',
'If Ryan Giggs is worth \£20m\, then Dennis Bergkamp is worth \£100m\.<br><b> Marco van Basten\.</b>',
'Other clubs never came into my mind when I knew Arsenal wanted to sign me\.<br><b> Dennis Bergkamp\.</b>',
'Robert Pires was quick to emphasise that he is not Marc Overmars\.<br><b> Lee Dixon\.</b>'
);


/*
	GetStatement( ) is the primary function.  It assumes the following:
	
	1.  The HTML file contains a form named "statementform".
	2.  Within the statement form, there is a textarea or textbox named "statement".               */

function GetStatement(outputtype) //modified by javascriptkit.com to either write out result or set innerHTML prop
{
	if(++Number > Statements.length - 1) Number = 0;
	if (outputtype==0)
	document.write(Statements[Number])
	else if (document.getElementById)
	document.getElementById("ponder").innerHTML=Statements[Number];
}


//  The GetRandomNumber( ) function extracts a random number within a given range.


function GetRandomNumber(lbound, ubound) 
{
	return (Math.floor(Math.random() * (ubound - lbound)) + lbound);
}


// The Number variable keeps track of which statement to display.  It will start at a random point.                

var Number = GetRandomNumber(0, Statements.length - 1);






