function rotateQuote()
{
	var Quotation=new Array()
	var Author=new Array()

	// QUOTATIONS
	Quotation[0] = 'It&lsquo;s not hard to make decisions when you know what your values are.';
	Quotation[1] = 'Philanthropy is an American habit and the modern foundation is an American invention to make human beings healthier, happier, wiser, more conscious of the rich possibilities of human existence and more capable of realizing them.';
	Quotation[2] = 'Men of the noblest dispositions think themselves happiest when others share their happiness with them.';
	Quotation[3] = 'In the divine account books only our actions are noted, not what we have read or what we have spoken.';
	Quotation[4] = 'If we do all that is necessary, all the odds are in our favor.';
	Quotation[5] = 'It is more fun to fight for what you believe than to sit on the sidelines.';
	Quotation[6] = 'There is no such thing as finding true happiness by searching for it directly. It must come, by the service, the love, and the happiness we give to others.';
	Quotation[7] = 'Let him who neglects to raise the fallen fear lest when he falls, no one will stretch out his hand to lift him up.';
	Quotation[8] = 'One can give nothing whatsoever without giving oneself-that is to say, risking oneself. If one cannot risk oneself, then one is simply incapable of giving.';
	Quotation[9] = 'The best thing to give to your enemy is forgiveness; to an opponent, tolerance; to a friend, your heart; to your child, a good example; to a father, deference; to your mother, conduct that will make her proud of you; to yourself, respect; to all men charity.';
	Quotation[10] = 'There is nothing more important in life than human beings, nothing sweeter than the human touch.';
	Quotation[11] = 'I want to be where I can make the biggest difference';
	Quotation[12] = 'Caring, a fundamental social value, can be found in its purest form among young people whose view of the world, whose convictions and ideals have not been eroded by the passing years';
	Quotation[13] = 'What we must decide is perhaps how we are valuable, rather than how valuable we are';
	Quotation[14] = 'Mankind&lsquo;s obligation is to make earth a better place, and I&lsquo;m optimistic about our chances.';
	Quotation[15] = 'Few will have the greatness to bend history itself, but each of us can work to change a small portion of events&hellip; It is from numberless acts of courage and belief that human history is shaped.';
	Quotation[16] = 'Let us endeavor so to live that, when we come to die, even the undertaker will be sorry.';
	Quotation[17] = 'Success is measured not by what you can get but by what you can give.';
	Quotation[18] = 'When I do good, I feel good. When I do bad, I feel bad. That is my religion.';
	Quotation[19] = 'We leave the same way. We come the same way. It&lsquo;s what we do in between that matters';
	Quotation[20] = 'If the first woman God ever made was strong enough to turn this world upside down all alone, then we together ought to be able to turn it right side up again.';
	Quotation[21] = 'What is the one indispensable ingredient that is going to solve the problems of the world into the 21st century? The only hope is love.';
	Quotation[22] = 'In the end, we will all be judged by only one thing- the extent of our love for one another.';
	Quotation[23] = 'No enterprise can exist for itself alone. It ministers to some great need, it performs some great service, not for itself, but for others.';
	Quotation[24] = 'All of God&lsquo;s creations were created for the purpose of giving.';
	Quotation[25] = 'This country will not be a good place for any of us to live in unless we make it a good place for all of us to live in.';
	Quotation[26] = 'The best and most beautiful things in the world cannot be seen or even touched. They must be felt with the heart.';
	Quotation[27] = 'The highest test of the civilization of a race is its willigness to extend a helping hand to the less fortunate.';
	Quotation[28] = 'If there is something you think you can do to help others, don&lsquo;t hold back. Nothing will make you happier.';
	Quotation[29] = 'A people that values its privileges above its principles soon loses both.';
	Quotation[30] = 'We were put in this world to love and be loved.';
	Quotation[31] = 'It is high time the ideal of success should be replaced with the ideal of service.';
	Quotation[32] = 'Ask not what your country can do for you; ask what you can do for your country.';
	Quotation[33] = 'I think we all have a moral obligation to put something back.';
	Quotation[34] = 'An institution that is not selfish must originate in the recognition of some evil that is adding to the sum of human suffering';
	Quotation[35] = 'Everybody can be great, because anybody can serve.';

	// AUTHORS
	Author[0] = 'Roy Oliver Disney';
	Author[1] = 'Charles Dollard';
	Author[2] = 'William Duncan';
	Author[3] = 'Mohandas Karamchand Gandhi';
	Author[4] = 'Henry Kissinger';
	Author[5] = 'Olaus Murie';
	Author[6] = 'Ralph Waldo Trine';
	Author[7] = 'SAADI (Muslih-ud-Din)';
	Author[8] = 'James Baldwin';
	Author[9] = 'Fancis Maitland Balfour';
	Author[10] = 'Lee Atwater';
	Author[11] = 'Jonathan French';
	Author[12] = 'William Halamandaris';
	Author[13] = 'Edgar Z. Friedenberg';
	Author[14] = 'Kareem Abdul Jabbar';
	Author[15] = 'Robert F. Kennedy';
	Author[16] = 'Mark Twain';
	Author[17] = 'Mitzi Perdue';
	Author[18] = 'Abraham Lincoln';
	Author[19] = 'Henry Landwirth';
	Author[20] = 'Sojourner Truth';
	Author[21] = 'Bob Macauley';
	Author[22] = 'Mary Joe Copeland';
	Author[23] = 'Calvin Coolidge';
	Author[24] = 'S. Truett Cathy';
	Author[25] = 'Theodore Roosevelt';
	Author[26] = 'Helen Keller';
	Author[27] = 'Booker T. Washington';
	Author[28] = 'John McMeel';
	Author[29] = 'Dwight Eisenhower';
	Author[30] = 'Robert Pamplin, Jr';
	Author[31] = 'Albert Einstein';
	Author[32] = 'John F. Kennedy';
	Author[33] = 'Hugh Jones';
	Author[34] = 'Clara Barton';
	Author[35] = 'Martin Luther King';

	var which = Math.round(Math.random()*(Quotation.length - 1));
	document.getElementById('quotation').innerHTML = Quotation[which];
	document.getElementById('author').innerHTML = Author[which];
	
}
