/* AUTHOR: Susanne Austin */
/* Creation date: 1/21/2004 */

var aryQuote = new Array();

aryQuote[0] = new Array();
aryQuote[0]['author']	= 'Gary Ryan Blair';
aryQuote[0]['text']	= 'A goal is created three times. First as a mental picture. Second, when written down to add clarity and dimension. And third, when you take action towards its achievement.';

aryQuote[1] = new Array();
aryQuote[1]['author']	= 'Norman Vincent Peale';
aryQuote[1]['text']	= "Action is a great restorer and builder of confidence.  Inaction is not only the result, but the cause, of fear.  Perhaps the action you take will be successful; perhaps different action or adjustments will have to follow. But any action is better than no action at all.";

aryQuote[2] = new Array();
aryQuote[2]['author']	= 'Brian Tracy';
aryQuote[2]['text']	= "When you engage in systematic, purposeful action, using and stretching your abilities to the maximum, you cannot help but feel positive and confident about yourself.";

aryQuote[3] = new Array();
aryQuote[3]['author']	= 'Nolan Bushnell';
aryQuote[3]['text']	= "Everyone who has ever taken a shower has had an idea. It's the person who gets out of the shower, dries off, and does something about it that makes a difference.";

aryQuote[4] = new Array();
aryQuote[4]['author']	= 'Ralph Blum';
aryQuote[4]['text']	= "Nothing is predestined.  The obstacles of your past can become the gateways that lead to new beginnings.";

aryQuote[5] = new Array();
aryQuote[5]['author']	= 'Sydney J. Harris';
aryQuote[5]['text']	= "Regret for the things we did can be tempered by time; it is regret for the things we did not do that is inconsolable.";

aryQuote[6] = new Array();
aryQuote[6]['author']	= 'George Shinn';
aryQuote[6]['text']	= "Believe you can do it. Believing something can be done puts your mind to work for you and helps you find ways to do it.";

aryQuote[7] = new Array();
aryQuote[7]['author']	= 'Anais Nin';
aryQuote[7]['text']	= "And the day came when the risk to remain tight in a bud was more painful than the risk it took to blossom.";

aryQuote[8] = new Array();
aryQuote[8]['author']	= 'Francis Bacon';
aryQuote[8]['text']	= "There is no comparison between that which is lost by not succeeding and that which is lost by not trying.";

aryQuote[9] = new Array();
aryQuote[9]['author']	= 'Herbert Kaufman';
aryQuote[9]['text']	= "Failure is only postponed success as long as courage 'coaches' ambition. The habit of persistence is the habit of victory.";


aryQuote[10] = new Array();
aryQuote[10]['author']	= 'Socrates';
aryQuote[10]['text']	= "Let him that would move the world, first move himself.";

aryQuote[11] = new Array();
aryQuote[11]['author']	= 'John Neal';
aryQuote[11]['text']	= "A certain amount of opposition is a great help to a man. Kites rise against, not with the wind.";

aryQuote[12] = new Array();
aryQuote[12]['author']	= 'Marilyn Ferguson';
aryQuote[12]['text']	= "Your past is not your potential. In any hour you can choose to liberate the future.";

aryQuote[13] = new Array();
aryQuote[13]['author']	= 'Michelangelo';
aryQuote[13]['text']	= "The greatest 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 reach it.";

aryQuote[14] = new Array();
aryQuote[14]['author']	= 'Frank Tyger';
aryQuote[14]['text']	= "Your future depends on many things, but mostly on you.";

aryQuote[15] = new Array();
aryQuote[15]['author']	= 'Thomas Jefferson';
aryQuote[15]['text']	= "Our greatest happiness in life does not depend on the condition of life in which chance has placed us, but is always the result of good conscience, good health, occupation, and freedom in all just pursuits.";

aryQuote[16] = new Array();
aryQuote[16]['author']	= 'Henry Ford';
aryQuote[16]['text']	= "There is no man living who isn't capable of doing more than he thinks he can do.";

aryQuote[17] = new Array();
aryQuote[17]['author']	= 'Duguet';
aryQuote[17]['text']	= "The smallest good deed is better than the grandest good intention.";

aryQuote[18] = new Array();
aryQuote[18]['author']	= 'Florence Scovel Shinn';
aryQuote[18]['text']	= "If one asks for success and prepares for failure, one will get the situation one has prepared for.";

aryQuote[19] = new Array();
aryQuote[19]['author']	= 'Syndey J. Harris';
aryQuote[19]['text']	= "An idealist believes the short run doesn't count.  A cynic believes the long run doesn't matter.  A realist believes that what is done or left undone in the short run determines the long run.";

aryQuote[20] = new Array();
aryQuote[20]['author']	= 'Ralph Waldo Emerson';
aryQuote[20]['text']	= "What lies behind us and what lies before us are tiny matters compared to what lies within us.";

aryQuote[21] = new Array();
aryQuote[21]['author']	= 'St. Francis of Assisi';
aryQuote[21]['text']	= "Start by doing what's necessary; then do what's possible; and suddenly you are doing the impossible.";


function initRandomQuote() {
	var randIndex = Math.floor(aryQuote.length * Math.random())
	var theQuote = aryQuote[randIndex];

	setText('quoteText', theQuote['text']);
	setText('quoteAuthor', theQuote['author']);
}
