function makeArray(len) {
   for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
	}

ideas = new makeArray(22);

ideas[0] = "<P CLASS='quote'>Paradise is exactly like where you are right now, only much, much better.<DIV CLASS='author'>William S. Burroughs</DIV></P>"

ideas[1] = "<P CLASS='quote'>Life is the art of drawing sufficient conclusions from insufficient premises.<DIV CLASS='author'>Samuel Butler</DIV></P>"

ideas[2] = "<P CLASS='quote'>Unless you love someone, nothing else makes any sense.<DIV CLASS='author'>E.E. Cummings</DIV></P>"

ideas[3] = "<P CLASS='quote'>Live each season as it passes; breathe the air, drink the drink, taste the fruit, and resign yourself to the influences of each.<DIV CLASS='author'>H.D. Thoreau</DIV></P>"

ideas[4] = "<P CLASS='quote'>Nothing is worth more than this day.<DIV CLASS='author'>Johann Wolfgang von Goethe</DIV></P>"

ideas[5] = "<P CLASS='quote'>Your manuscript is both good and original, but the part that is good is not original, and the part that is original is not good.<DIV CLASS='author'>Samuel Johnson</DIV></P>"

ideas[6] = "<P CLASS='quote'>Outside of a dog, a book is man's best friend.  Inside of a dog, it's too dark to read.<DIV CLASS='author'>Groucho Marx</DIV></P>"

ideas[7] = "<P CLASS='quote'>The knack of flying is learning how to throw yourself at the ground and miss.<DIV CLASS='author'>Douglas Adams</DIV></P>"

ideas[8] = "<P CLASS='quote'>We are what we repeatedly do.  Excellence is not an art but a habit.<DIV CLASS='author'>Aristotle</DIV></P>"

ideas[9] = "<P CLASS='quote'>Love not what you are, but what you may become.<DIV CLASS='author'>Miguel de Cervantes</DIV></P>"

ideas[10] = "<P CLASS='quote'>Every difficulty slurred over will be a ghost to disturb your repose later on.<DIV CLASS='author'>Frederic Chopin</DIV></P>"

ideas[11] = "<P CLASS='quote'>You don't have a soul. You are a soul.  You have a body.<DIV CLASS='author'>C. S. Lewis</DIV></P>"

ideas[12] = "<P CLASS='quote'>All serious daring starts from within.<DIV CLASS='author'>Eudora Welty</DIV></P>"

ideas[13] = "<P CLASS='quote'>Eternity is in love with the productions of time.<DIV CLASS='author'>William Blake</DIV></P>"

ideas[14] = "<P CLASS='quote'>It is not the answer that enlightens, but the question.<DIV CLASS='author'>Eugene Ionesco</DIV></P>"

ideas[15] = "<P CLASS='quote'>All great truths begin as blasphemies.<DIV CLASS='author'>George Bernard Shaw</DIV></P>"

ideas[16] = "<P CLASS='quote'>Nobody who says, 'I told you so' has ever been, or will ever be, a hero.<DIV CLASS='author'>Ursula K. LeGuin</DIV></P>"

ideas[17] = "<P CLASS='quote'>What we hope ever to do with ease, we must learn first to do with diligence.<DIV CLASS='author'>Samuel Johnson</DIV></P>"

ideas[18] = "<P CLASS='quote'>The man who has no imagination has no wings.<DIV CLASS='author'>Muhammad Ali</DIV></P>"

ideas[19] = "<P CLASS='quote'>Your work is to discover your world and then with all your heart give yourself to it.<DIV CLASS='author'>Buddha</DIV></P>"

ideas[20] = "<P CLASS='quote'>Why does the universe go to all the bother of existing?<DIV CLASS='author'>Stephen Hawking</DIV></P>"

ideas[21] = "<P CLASS='quote'>Those who hate to go to bed fear death; those who hate to get up fear life.<DIV CLASS='author'>W.H. Auden</DIV></P>"

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff
