// JavaScript Document
var quotes = new Array();

quotes[0] = "This is the best day of my life, I&rsquo;m not scared of tomorrows, I've seen yesterday and I love today";
quotes[1] = "Remember today, for it is the beginning of always.  Today marks the start of a brave new future filled with all your dreams can hold.  Think truly to the future and make those dreams come true";
quotes[2] = "Fear not for the future, weep not for the past";
quotes[3] = "It&rsquo;s kind of fun to do the impossible";
quotes[4] = "Knowing is not enough; we must apply. Willing is not enough; we must do";
quotes[5] = "Never, never, never, never give up";
quotes[6] = "I shall make the most of all that comes; And the least of all that goes";
quotes[7] = "I am not an adventurer by choice but by fate";
quotes[8] = "I see my path, but I don&rsquo;t know where it leads. Not knowing where I'm going is what inspires me to travel it";
quotes[9] = "You may never know what results come of your action, but if you do nothing there will be no result";
quotes[10] = "You won't realise the distance you&rsquo;ve walked until you take a look around and realise how far you&rsquo;ve been";
quotes[11] = "The time for quietly soldiering on is through. The war against Parkinson&rsquo;s is a winnable war, and I have resolved to play a role in that victory";
quotes[12] = "The thing always happens that you really believe in; and the belief in a thing makes it happen";
quotes[13] = "Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration";

quotes[14] = "Life is uncharted territory. It reveals its story one moment at a time";
quotes[15] = "The path to success is to take massive, determined action";
quotes[16] = "Don&rsquo;t wait. The time will never be just right";
quotes[17] = "Everything is simpler than you think and at the same time more complex than you imagine";
quotes[18] = "Expect nothing, live frugally on surprise";
quotes[19] = "Now there is one outstandingly important fact regarding Spaceship Earth, and that is that no instruction book came with it";
quotes[20] = "Life is like an onion: You peel it off one layer at a time, and sometimes you weep";
quotes[21] = "Science is organized knowledge. Wisdom is organized life";
quotes[22] = "Nothing in life is to be feared. It is only to be understood";
quotes[23] = "The truth is always exciting. Speak it, then. Life is dull without it";
quotes[24] = "If you&rsquo;re not part of the solution, you're part of the precipitate";
quotes[25] = "The most exciting phrase to hear in science, the one that heralds the most discoveries, is not &quot;Eureka!&quot; (I found it!) but &quot;That's funny...&quot;";
quotes[26] = "If we wish to make a new world we have the material ready.  The first one, too, was made out of chaos";
quotes[27] = "Science is a wonderful thing if one does not have to earn one&rsquo;s living at it";
quotes[28] = "Science is always wrong.  It never solves a problem without creating ten more";

var quoteauthor = new Array();

quoteauthor[0] = "- William Allen White";
quoteauthor[1] = "";
quoteauthor[2] = "";
quoteauthor[3] = "- Walt Disney";
quoteauthor[4] = "- Johann Wolfgang von Goethe";
quoteauthor[5] = "- Winston Churchill";
quoteauthor[6] = "- Sara Teasdale";
quoteauthor[7] = "- Vincent van Gogh";
quoteauthor[8] = "- Rosalia de Castro";
quoteauthor[9] = "- Mahatma Gandhi";
quoteauthor[10] = "";
quoteauthor[11] = "- Michael J Fox";
quoteauthor[12] = "- Frank Loyd Wright";
quoteauthor[13] = "- Evan Esar";

quoteauthor[14] = "- Leo F. Buscaglia";
quoteauthor[15] = "- Anthony Robbins";
quoteauthor[16] = "- Napoleon Hill";
quoteauthor[17] = "- Johann Wolfgang von Goethe";
quoteauthor[18] = "- Alice Walker";
quoteauthor[19] = "- Buckminster Fuller";
quoteauthor[20] = "- Carl Sandburg";
quoteauthor[21] = "- Immanuel Kant";
quoteauthor[22] = "- Marie Curie";
quoteauthor[23] = "- Pearl S. Buck";
quoteauthor[24] = "- Henry J. Tillman";
quoteauthor[25] = "- Isaac Asimov";
quoteauthor[26] = "- Robert Quillen";
quoteauthor[27] = "- Albert Einstein";
quoteauthor[28] = "- George Bernard Shaw";

function getQuote()
{
	var qnum = Math.floor(Math.random() * quotes.length);
	document.write(quotes[qnum]);
	if (quoteauthor[qnum].length >= 1)
		document.write("<br />" + quoteauthor[qnum]);
}