function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

ideas = new makeArray(28);
ideas[0] = "The human mind operates by association of thoughts,<br> in accordance with some intricate web of trails.<br> - Vannevar Bush (1945) -"
ideas[1] = "The beginning of knowledge is the discovery<br> of something we do not understand.<br>- Frank Herbert -"
ideas[2] = "Good questions outrank easy answers.<br>- Paul A. Samuelson -"
ideas[3] = "It is not about who has got the most bullets,<br>it is about who controls the information.<br>- Cosmo to Bishop (Sneakers 1992) -"
ideas[4] = "Originally, the Internet was <br>a post-apocalypse command grid.<br> - Hardy -"
ideas[5] = "The browser is an extremely silly concept.<br>A window for looking sequentially<br>at a large parallel structure.<br> - Ted Nelson -"
ideas[6] = "Knowledge is of two kinds. We know<br>a subject ourselves, or we know<br>where we can find information upon it.<br> - Samual Johnson (1709-1784) -"
ideas[7] = "Good questions outrank easy answers.<br>- Paul A. Samuelson -"
ideas[8] = "Retreat, Hell! We're only<br>attacking in another direction.<br>- Major General Oliver P. Smith -"
ideas[9] = "The digital revolution is far more significant than<br>the invention of writing or even of printing.<br>- Douglas Engelbart -"
ideas[10] = "It has yet to be proven that<br>intelligence has any survival value.<br>- Arthur C. Clarke -"
ideas[11] = "Readers are plentiful thinkers are rare.<br>- Harriet Martineau -"
ideas[12] = "Discovery consists of seeing what everybody has<br>seen and thinking what nobody has thought<br>- Albert Szent-Gyorgyi -"
ideas[13] = "Think for yourself, question authority.<br>- Timothy Leary -"
ideas[14] = "A university is just a group of<br>buildings gathered around a library.<br>- Shelby Foote -"
ideas[15] = "Nothing is a waste of time<br>if you use the experience wisely.<br> - Auguste Rodin - "
ideas[16] = "Perhaps imagination is only intelligence having fun.<br> - George Scialabra -"
ideas[17] = "Wisdom outweighs any wealth.<br>- Sophocles -"
ideas[18] = "The art of being wise is the<br>art of knowing what to overlook.<br>- William James -"
ideas[19] = "Great ideas often receive violent<br>opposition from mediocre minds.<br>- Albert Einstein -"
ideas[20] = "Trust yourself. You know more<br>than you think you do.<br>- Benjamin Spock -"
ideas[21] = "The eye sees only what the mind<br>is prepared to comprehend.<br>- Henri Bergson -"
ideas[22] = "As a general rule, the most successful man in life<br>is the man who has the best information.<br>- Benjamin Disraeli -"
ideas[23] = "The Internet lives where anyone can access it.<br>- Vinton Cerf -"
ideas[24] = "We had no idea that this would turn into a global and public infrastructure.<br>- Vinton Cerf -"
ideas[25] = "The Web as I envisaged it, we have not seen it yet.<br>The future is still so much bigger than the past.<br>- Tim Berners-Lee -"
ideas[26] = "Look and think before opening the shutter.<br>The heart and mind are the true lens of the camera.<br>- Yousuf Karsh -"
ideas[27] = "All men by nature desire knowledge.<br>- Aristotle -"


// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff

