// random quotes
var Quotation=new Array() // do not change this!

Quotation[0] = "\"Successful visionaries start from where they are, what they have, and what their customers have.\" - Tom Gilb";
Quotation[1] = "\"Daring ideas are like chessmen moved forward; they may be beaten, but they may start a winning game.\" - Johann Wolfgang von Goethe";
Quotation[2] = "\"Technology is just a tool. In terms of getting the kids working together and motivating them, the teacher is the most important.\" - Bill Gates";
Quotation[3] = "\"Always remember that someone, somewhere is making a product that will make your product obsolete.\" - Georges Doriot";
Quotation[4] = "\"The reasonable man adapts himself to the world; the unreasonable man persists in trying to adapt the world to himself. Therefore all progress depends on the unreasonable man.\" - George Bernard Shaw";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));

function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();