var quote = new Array()
	 quote[0] = '&#8220;Knowledge of what is possible is the beginning of happiness&#8221;. <br />George Santayana'
	 quote[1] = '&#8220;The future belongs to those who believe in the beauty of their dreams&#8221;. <br />Eleanor Roosevelt'
	 quote[2] = '&#8220;Most of the shadows of this life are caused by our standing in our own sunshine&#8221;. <br /> Ralph Waldo Emerson'
	 quote[3] = '&#8220;The only way of finding the limits of the possible is by going beyond them into the impossible&#8221;. <br /> Arthur C. Clarke'
	 quote[4] = '&#8220;Every day do something that will inch you closer to a better tomorrow&#8221;. <br>Doug Firebaugh'
	 quote[5] = '&#8220;The significance of a man is not in what he attains but in what he longs to attain&#8221;. <br /> Kahlil Gibran'
	 quote[6] = '&#8220;In the hopes of reaching the moon men fail to see the flowers that blossom at their feet&#8221;. <br /> Albert Schweitzer'
	 quote[7] = '&#8220;When one door of happiness closes, another opens, but often we look so long at the closed door that we do not see the one that has been opened for us&#8221;. <br /> Helen Keller'

	 var randomquote = Math.floor(Math.random()*(quote.length));
	 function printquote(){
	 document.write(quote[randomquote]);
	 }
