﻿// 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.

ideas = new makeArray(32);
ideas[0] = "<p class='quote'>&quot;In todays environment it will be the <b>survival</b> of the quickest <b>Not</b> the fittest.&quot;</p><p class='quotee'>Abraham Lincoln</p> "
ideas[1] = "<p class='quote'>&quot;If I have seen further than others, it is by standing upon the shoulders of giants.&quot;</p><p class='quotee'>Sir Isaac Newton</p> "
ideas[2] = "<p class='quote'>&quot;Traditional thinking is all about ''what is'' Future thinking will also need to be about what can be.&quot;</p><p class='quotee'>Edward de Bono </p> "
ideas[3] = "<p class='quote'>&quot;The winner is the chef who takes the same ingredients as everyone else and produces the best results.&quot;</p><p class='quotee'>Edward de Bono </p> "
ideas[4] = "<p class='quote'>&quot;It is only the farmer who faithfully plants seeds in the Spring, who reaps a harvest in the Autumn.&quot;</p><p class='quotee'>BC Forbes</p> "
ideas[5] = "<p class='quote'>&quot;Success is a science; if you have the conditions, you get the result.&quot;</p><p class='quotee'>Oscar Wilde</p> "
ideas[6] = "<p class='quote'>&quot;What helps people, helps business.&quot;</p><p class='quotee'>Leo Burnett</p> "
ideas[7] = "<p class='quote'>&quot;Take heed: you do not find what you do not seek.&quot;</p><p class='quotee'>English Proverb</p> "
ideas[8] = "<p class='quote'>&quot;Take care of the minutes, for the hours will take care of themselves.&quot;</p><p class='quotee'>Lord Chesterfield</p> "
ideas[9] = "<p class='quote'>&quot;The first man gets the oyster, the second man gets the shell.&quot;</p><p class='quotee'>Andrew Carnegie</p> "
ideas[10] = "<p class='quote'>&quot;Genius is one percent inspiration and 99 percent perspiration.&quot;</p><p class='quotee'>Thomas Alva Edison</p> "
ideas[11] = "<p class='quote'>&quot;The world cares very little about what a man or woman knows; it is what the man or woman is able to do that counts.&quot;</p><p class='quotee'>Booker T. Washington</p> "
ideas[12] = "<p class='quote'>&quot;He that would have fruit must climb the tree.&quot;</p><p class='quotee'>Thomas Fuller</p> "
ideas[13] = "<p class='quote'>&quot;The haves and the have-nots can often be traced back to the dids and the did-nots.&quot;</p><p class='quotee'>D.O. Flynn</p> "
ideas[14] = "<p class='quote'>&quot;Getting ready is the secret of success.&quot;</p><p class='quotee'>Henry Ford</p> "
ideas[15] = "<p class='quote'>&quot;Nothing is particularly hard if you divide it into small jobs.&quot;</p><p class='quotee'>Henry Ford</p> "
ideas[16] = "<p class='quote'>&quot;A man’s errors are his portals of discovery.&quot;</p><p class='quotee'>James Joyce</p> "
ideas[17] = "<p class='quote'>&quot;It is no use saying, &quot;We are doing our best.&quot; You have got to succeed in doing what is necessary.&quot;</p><p class='quotee'>Winston Churchill</p> "
ideas[18] = "<p class='quote'>&quot;Doubt is a thief that often makes us fear to tread where we might have won.&quot;</p><p class='quotee'>William Shakespeare</p> "
ideas[19] = "<p class='quote'>&quot;Hitch your wagon to a star.&quot;</p><p class='quotee'>Ralph Waldo Emerson</p> "
ideas[20] = "<p class='quote'>&quot;Excellence is to do a common thing in an uncommon way.&quot;</p><p class='quotee'>Booker T. Washington</p> "
ideas[21] = "<p class='quote'>&quot;The secret of business is to know something that nobody else knows.&quot;</p><p class='quotee'>Aristotle Onassis</p> "
ideas[22] = "<p class='quote'>&quot;Put all your eggs in one basket and – watch that basket.&quot;</p><p class='quotee'>Mark Twain</p> "
ideas[23] = "<p class='quote'>&quot;Every child is an artist. The problem is how to remain an artist after growing up.&quot;</p><p class='quotee'>Pablo Picasso</p> "
ideas[24] = "<p class='quote'>&quot;Experience is the name everyone gives to their mistakes.&quot;</p><p class='quotee'>Oscar Wilde</p> "
ideas[25] = "<p class='quote'>&quot;Man is still the most extraordinary computer of all.&quot;</p><p class='quotee'>John F. Kennedy</p> "
ideas[26] = "<p class='quote'>&quot;Get a good idea and stay with it. Dog it, and work at it until it’s done, and done right.&quot;</p><p class='quotee'>Walt Disney</p> "
ideas[27] = "<p class='quote'>&quot;Courage is the first of human qualities because it is the quality which guarantees all the others.&quot;</p><p class='quotee'>Winston Churchill</p> "
ideas[28] = "<p class='quote'>&quot;We do not remember days, we remember moments.&quot;</p><p class='quotee'>Cesare Pavese</p> "
ideas[29] = "<p class='quote'>&quot;The years teach what the days never know.&quot;</p><p class='quotee'>Ralph Waldo Emerson</p> "
ideas[30] = "<p class='quote'>&quot;I am more afraid of an army of 100 sheep led by a lion than an army of 100 lions led by a sheep.&quot;</p><p class='quotee'>Talleyrand</p> "
ideas[31] = "<p class='quote'>&quot;This time, like all times, is a very good one, if we know what to do with it.&quot;</p><p class='quotee'>Ralph Waldo Emerson</p> "



// The random number generator.

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