// random quotes
var Quotation=new Array() // do not change this!

Quotation[0] = "\"Some people believe football is a matter of life and death. I'm very disappointed with that attitude. I can assure you it is much, much more important than that.\"- Bill Shankly";
Quotation[1] = "\"The rules of soccer are very simple, basically it is this: if it moves, kick it. If it doesn't move, kick it until it does.\" - Phil Woosnam";
Quotation[2] = "\"Every kid around the world who plays soccer wants to be Pele. I have a great responsibility to show them not just how to be like a soccer player, but how to be like a man.\" - Pele";
Quotation[3] = "\"God makes me play well. That is why I always make the sign of the cross when I walk out onto the pitch. I feel I would be betraying him if I didn't.\" - Diego Maradona";
Quotation[4] = "\"The goalkeeper is the jewel in the crown and getting at him should be almost impossible. It's the biggest sin in football to make him do any work.\" - George Graham";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));

function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
