var quote=new Array();

  quote[0] = '"Once the game is over, the King and the pawn go back in the same box." -Italian proverb';
  quote[1] = '"A strange game. The only winning move is not to play." - Joshua';
  quote[2] = '"The fact that <i>some</i> choice is good doesn\'t necessarily mean that <i>more</i> choice is better." - Barry Schwartz';
  quote[3] = '"One of the most difficult tasks people can perform, however much others may despise it, is the invention of good games." - C.G. Jung';
  quote[4] = '"We don\'t stop playing because we grow old, we grow old because we stop playing." - George Bernard Shaw';

document.write( quote[ Math.round(Math.random() * (quote.length-1)) ] );
