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(53);
ideas[0] = "Within you there is a stillness and a sanctuary to which you can retreat at any time and be yourself.   - Hermann Hesse";
ideas[1] = "The time for action is now.  It's never too late to do something.   - Carl Sandburg"
ideas[2] = "The time you enjoy wasting is not wasted time.   - Bertrand Russell"
ideas[3] = "Better three hours too soon, than one minute too late.   - William Shakespeare"
ideas[4] = "One cannot manage too many affairs; like pumpkins in the water, one pops up while you try to hold down the other.  - Chinese Proverb"
ideas[5] = "You cannot do a kindness too soon, for you never know how soon it will be too late.   - Ralph Waldo Emerson"
ideas[7] = "Today, be aware of how you are spending your 1,440 beautiful moments, and spend them wisely.   - Unknown"
ideas[8] = "The best inheritance a parent can give to his children is a few minutes of their time each day.   - M. Grundler"
ideas[9] = "The greatest appointment you have in life is with yourself.  Be sure to show up on time and pay attention.  - Laura Teresa Marquez"
ideas[10] = "Time invested in improving ourselves cuts down on time wasted in disapproving of others.   - Unknown"
ideas[11] = "If you have time to lean, you have time to clean.   - Ray Kroc"
ideas[12] = "What may be done at any time will be done at no time.   - Scottish Proverb"
ideas[13] = "Time is like the ocean, always there, always different.   - Ogden Nash"
ideas[14] = "Time is what we want most, but what we use worst.   - William Penn"
ideas[15] = "We must use time creatively, and forever realize that the time is always ripe to do right.   - C. Everett Koop"
ideas[16] = "You're writing the story of your life, one moment at a time.   - Doc Childre & Howard Martin"
ideas[17] = "Tomorrow, tomorrow. There's always tomorrow.  It's only a day away.   - From Annie"
ideas[18] = "Whether it's the best of times or the worst of times, it's the only time we've got.   - Art Buchwald"
ideas[19] = "The most wasted of all days is one without laughter.   - E. E. Cummings"
ideas[20] = "To be in your children's memories tomorrow, you have to be in their lives today.   - Unknown"
ideas[21] = "Time sneaks up on you like a windshield on a bug.   - John Lithgow"
ideas[22] = "A year from now you will wish you started today.   - Karen Lamb"
ideas[23] = "Take a rest.  A field that has rested yields a beautiful crop.   - Roman poet Ovid"
ideas[24] = "Sooner and later are not days of the week.   - Greg Hickman"
ideas[25] = "I've been on a calendar, but never on time.   - Marilyn Monroe"
ideas[26] = "Talk less of days to come.  Live, love, labor more today.   - Alice Cary"
ideas[27] = "Carpe diem (Enjoy the present day, seize the opportunity).   - Latin Proverb"
ideas[28] = "For yesterday was once tomorrow.   - Persius"
ideas[29] = "An inch of time cannot be bought with an inch of gold.   - Chinese Proverb"
ideas[30] = "You cannot kill time without injuring eternity.   - Henry David Thoreau"
ideas[31] = "Time gives all kinds of perspective to things.   - Cindy Steele"
ideas[32] = "Live each day as if it be your last.   - Marcus Aurelius, 140 AD"
ideas[33] = "If only we'd stop trying to be happy we'd have a pretty good time.   - Edith Newbold Wharton"
ideas[34] = "Everyone must take time to sit and watch the leaves turn.   - Elizabeth Lawrence"
ideas[35] = "Time flies.  It's up to you to be the navigator.   - Robert Orben"
ideas[36] = "We need time to dream, time to remember, and time to reach infinite.  Time to be.   - Gladys Tabor"
ideas[37] = "The time has come for all good men to rise above principle.   - Huey Pierce Long"
ideas[38] = "Don't let yesterday use up too much of today.   - Will Rogers"
ideas[39] = "Every man regards his own life as the New Year's Eve of time.   - Jean Paul Richter"
ideas[40] = "A New Year Resolution:  transform, reflect, heal, create.   - Unknown"
ideas[41] = "Time for a little something.   - Alan Alexander Milne"
ideas[42] = "Time heals griefs and quarrels, for we change and are no longer the same persons.   - Blaise Pascal"
ideas[43] = "You delay, but time will not.   - Benjamin Franklin"
ideas[44] = "You can't have a better tomorrow if you are thinking about yesterday all the time.   - Charles Kettering"
ideas[45] = "You have to make your own good time.   - Hasebah George"
ideas[46] = "Once upon a time...   - Unknown"
ideas[47] = "Time is a created thing.  To say 'I don't have time' is like saying 'I don't want to...'   - Lao Tzu"
ideas[48] = "The butterfly counts not years but moments and has time enough.   - Rabindranath Tagore"
ideas[49] = "Lost time is never found again.   - Benjamin Franklin"
ideas[50] = "When we are present in each moment, the past gently rolls up behind us and the future slowly unravels before us.   - Richard Levy"
ideas[51] = "All we have to decide is what to do with the time that is given us.   - J.R.R. Tolkien"
ideas[52] = "All the flowers of all of the tomorrows are in the seeds of today.   - Chinese Proverb"

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff

