// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

Quotation[0] = "put your hands in your pockets, looked away and smiled";
Quotation[1] = "good night & good luck";
Quotation[2] = "don't you ever get tired of being wrong all the time?";
Quotation[3] = "the line must be drawn, this far, no further";
Quotation[4] = "all I can do is be me, whoever that is";
Quotation[5] = "pass uni, get job, overthrow government, be happy";
Quotation[6] = "some people feel the rain, others just get wet";
Quotation[7] = "don't stand in the doorway, don't block up the hall";
Quotation[8] = "don't you know you might find a better place to play";
Quotation[9] = "never stopped me dreaming";



// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
