var arrQuote = new Array();

/*
var arrAuthor = new Array();

arrQuote[0]="Sooner or later those who win are those who think they can.";
arrQuote[1]="You can not meet the challenges of the day with the same level of thinking that created them.";
arrQuote[2]="The greatest discovery of our generation is that human beings can alter their lives by altering their attitudes of mind. As you think so shall you be."; 

arrAuthor[0]="Richard Bach";
arrAuthor[1]="Albert Einstein";
arrAuthor[2]="William James";
*/
/*
arrQuote[0] = new Array("Sooner or later those who win are those who think they can.","Richard Bach");
arrQuote[1] = new Array("You can not meet the challenges of the day with the same level of thinking that created them.","Albert Einstein");
arrQuote[2] = new Array("The greatest discovery of our generation is that human beings can alter their lives by altering their attitudes of mind. As you think so shall you be.","William James");
arrQuote[3] = new Array("The future is of our own making - and the most striking characteristic of this century is just that development.","Joseph Conrad");
arrQuote[4] = new Array("Great minds have purposes; others have wishes.","Washington Irving");
arrQuote[5] = new Array("Whatever you\'re ready for is ready for you.","Mark Victor Hansen");
arrQuote[6] = new Array("A year from now you may wish you had started today.","Karen Lamb");
arrQuote[7] = new Array("Anything I\'ve ever done that ultimately was worthwhile... initially scared me to death.","Betty Bender");
arrQuote[8] = new Array("To get profit without risk, experiences without danger, and reward without work, is as impossible as it is to live without being born.","A.P. Gouthey");
arrQuote[9] = new Array("Our duty is to proceed as if limits to our ability do not exist.","Teilhard de Chardin");
arrQuote[10] = new Array("If you do not think about the future, you cannot have one.","John Gale");
arrQuote[11] = new Array("Keep a diary of your dreams, goals and accomplishments.  If your life is worth living, it\'s worth recording.","Marilyn Grey");
arrQuote[12] = new Array("The best leaders are very often the best listeners.  They have an open mind.  They are not interested in having their own way but in finding the best way.","Wilfre Peterson");
arrQuote[13] = new Array("The best minute you spend is the one you invest in people.","Blanchard & Johnson");
arrQuote[14] = new Array("Leadership is action, not position.","Donald H. McGannon");
arrQuote[15] = new Array("Amateurs hope.  Professionals make it happen.","Garson Kanin");
arrQuote[16] = new Array("The greatest thing you can do for any individual or any group in your day is to help them find the best.","Katherine Logan");
arrQuote[17] = new Array("Some succeed because they are destined to; most succeed because they are determined to.","Anatole France");
arrQuote[18] = new Array("Let me tell you the secret that has led me to my goal.  My strength lies solely in my tenacity.","Louis Pasteur");
arrQuote[19] = new Array("Never mistake motion for action.","Ernest Hemingway");
arrQuote[20] = new Array("When you get right down to the meaning of the word \"succeed,\" you find it simply means to follow through.","F.W. Nichol");
arrQuote[21] = new Array("There is no traffic jam on the extra mile."," ");
arrQuote[22] = new Array("You can outdo you - if you really want to.","Paul Harvey");
arrQuote[23] = new Array("The road to success has many tempting parking places.","Steve Potter");
arrQuote[24] = new Array("If we did all the things we are capable of, we would literally astound ourselves.","Thomas Edison");
arrQuote[25] = new Array("Don\'t be afraid to take a big step if one is indicated.  You can\'t cross a chasm in two small jumps.","David Lloyd George");
arrQuote[26] = new Array("You know far more than you know you know.  Never ask, \"Can I do this?\" Ask instead, \"How can I do this?\"","Dan Zadra");
arrQuote[27] = new Array("High achievers spot rich opportunities swiftly, make big decisions quickly, and move into action immediately.","Dr. Robert Schuller");

var numQuotes = 28
var randNum = Math.floor(numQuotes*Math.random());

var qstr = arrQuote[randNum][0];
var astr = arrQuote[randNum][1];

var qel = getElement('quotetext');
var ael = getElement('quoteauthor');

qel.innerHTML = qstr;
ael.innerHTML = astr;


function getElement(id) {
	if (document.getElementById) { 
		return document.getElementById(id);
	} else if (document.all) {
		return document.all[id];
	} else if (document.layers) {
		return document.layers[id];
	} else {
		alert('Sorry, your browser will not allow the necessary scripts to run');  
		return null;
	}
}

*/