/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 7;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Any fool can make things bigger, more complex, and more violent!  It takes a touch of genius and a lot of courage to move in the opposite direction.";
body="Albert Einstein - Austrian-American Theoretical Physicist (1879-1955)";
}

if (quotes==1) {
title="If you think you can, then you can. If you think you can't, then..... you're right!";
body="Mary Kay Ash - Founder Mary Kay Cosmetics (1918-2001)";
}

if (quotes==2) {
title="Every day you may make progress. Every step may be fruitful. Yet there will stretch out before you an ever-lengthening, ever-ascending, ever-improving path. You know you will never get to the end of the journey. But this, so far from discouraging, only adds to the joy and glory of the climb";
body="Sir Winston Churchill";
}

if (quotes==3) {
title="Success in business requires training and discipline and hard work. But if you're not frightened by these things, the opportunities are just as great today as they ever were.";
body="David Rockefeller";
}

if (quotes==4) {
title="A positive attitude may not solve all your problems, but it will annoy enough people to make it worth the effort.";
body="Herm Albright - (1876-1944)";
}

if (quotes==5) {
title="Slow down and enjoy life. It's not only the scenery you miss by going too fast - you also miss the sense of where you are going and why.";
body="Eddie Cantor (1892-1964)";
}

if (quotes==6) {
title="You cannot dream yourself into a character; you must hammer and forge yourself one.";
body="James A. Froude (1818-1894)";
}




document.write('<div align=left>');
document.write('<i>&#147;' + title + '&#148;<br>');
document.write('&#150;&#150;&nbsp;'+ body +'</i>');
document.write('</div>');
