// quotes.js
// The Array Function 

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
    this.length = len;
}

// This is where the array of text/images/sounds is created.

quotes = new makeArray(15);
quotes[0] = "Good morning! This is God! I will be handling all of your problems today. I will not need your help. So have a good day.";
quotes[1] = "Friends are angels who lift us to our feet when our wings have trouble remembering how to fly."
quotes[2] = "Determination is often the first chapter in the book of excellence."
quotes[3] = "You cannot discover new oceans unless you have the courage to lose sight of the shore."
quotes[4] = "There are no secrets to success. It is the result of preparation, hard work, learning from failure.<br>- <i>General Colin Powell</i>"
quotes[5] = "Success can make you go one of two ways. It can make you a prima donna, or it can smooth the edges, take away the insecurities, let the nice things come out.<br>- <i>Barbara Walters</i>"
quotes[6] = "Success is that old A-B-C - ability, breaks and courage.<br>- <i>Charles Luckman</i>"
quotes[7] = "Self-confidence is the first requisite to great undertakings.<br>- <i>Samuel Johnson</i>"
quotes[8] = "Perserverence is a great element of success. If you only knock loud enough at the gate, you are sure to wake somebody.<br>- <i>Henry Wadsworth Longfellow</i>"
quotes[9] = "Success is not the result of spontaneous combustion. You must set yourself on fire.<br>- <i>Reggie Leach</i>"
quotes[10] = "You are a unique gift of creation. And what you do with yourself is almost entirely based upon your imagination of your possibilities.<br>- <i>Denis Waitley</i>"
quotes[11] = "If the love of what you\'re doing exceeds the labor of doing it...success is inevitable.<br>- <i>Bob Beers</i>"
quotes[12] = "Faith is daring to put your dream to the test. It is better to try to do something and fail than to try to do nothing and succeed.<br>- <i>Dr. Robert H. Schuller</i>"
quotes[13] = "If someone believes in you, and you believe in your dreams, it can happen.<br>- <i>Tiffany Loren Rowe</i>"
quotes[14] = "To love a person is to learn the song that is in their heart, and to sing it to them when they have forgotten.<br>- <i>Thomas Chandler</i>"

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff
