quotes = new Array
(
"&quot;Continuous effort - not strength or intelligence - is the key to unlocking our potential.&quot;&nbsp;&nbsp;Winston Churchill",
"&quot;Knowing is not enough; we must apply. Being willing is not enough; we must do.&quot;&nbsp;&nbsp;Leonardo da Vinci",
"&quot;The greater danger for most of us is not that our aim is too high and we miss it, but that it is too low and we hit it.&quot;&nbsp;&nbsp;Michelangelo",
"&quot;Success is going from failure to failure without a loss of enthusiasm.&quot;&nbsp;&nbsp;Winston Churchill",
"&quot;A man may die, nations may rise and fall, but an idea lives on.&quot;&nbsp;&nbsp;John F. Kennedy",
"&quot;It does not matter how slowly you go as long as you do not stop.&quot;&nbsp;&nbsp;Confucius",
"&quot;Education is the most powerful weapon you can use to change the world.&quot;&nbsp;&nbsp;Nelson Mandela",
"&quot;A man's worth is no greater than his ambitions.&quot;&nbsp;&nbsp;Marcus Aurelius",
"&quot;To be able to fill leisure intelligently is the last product of civilization.&quot;&nbsp;&nbsp;Bertrand Russell",
"&quot;The more we share, the more we have.&quot;&nbsp;&nbsp;Leonard Nimoy",
"&quot;Knowledge is the food of the soul.&quot;&nbsp;&nbsp;Plato"
);

rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd()
{
rnd.seed = (rnd.seed*9301+49297) % 233280;
return rnd.seed/(233280.0);
};

function rand(number)
{
return Math.ceil(rnd()*number);
};

document.write(quotes[rand(quotes.length)-1]) 