function loadQuote(category) {
	if (category == "Courage"){
	  category_array = courage;
	}
	else if (category == "Hope") {
	  category_array = hope;
	}
	else if (category == "Forgiveness") {
	  category_array = forgiveness;
	}
	else if (category == "Inspiration") {
	  category_array = inspiration;
	}
	else if (category == "Balance") {
	  category_array = balance;
	}
	else if (category == "Happiness") {
	  category_array = happiness;
	}
	else {
	  category_array = courage;
	}
	quote = category_array[Math.floor(Math.random() * category_array.length)];
	document.getElementById('title').innerHTML = category;
	document.getElementById('quote').innerHTML = quote;
}

var courage = [
"Courage is the power to let go of the familiar. <br /> ~Raymond Lindquist",
"Courage can't see around corners, but goes around them anyway. <br /> ~Mignon McLaughlin, The Neurotic's Notebook, 1960"
];
var hope = [
"Hope is faith holding out its hand in the dark.<br /> ~George Iles",
"Optimism is the foundation of courage.<br /> ~Nicholas Murray Butler",
"Hope is the only bee that makes honey without flowers.<br /> ~Robert Ingersoll"
];
var forgiveness = [
"Forgiveness is the fragrance the violet sheds on the heel that has crushed it.<br /> ~Mark Twain",
"Forgiveness does not change the past, but it does enlarge the future.<br /> ~Paul Boese",
"Always forgive your enemies - nothing annoys them so much.<br /> ~Oscar Wilde",
"He who cannot forgive breaks the bridge over which he himself must pass.<br /> ~George Herbert",
"Once a woman has forgiven her man, she must not reheat his sins for breakfast.<br /> ~Marlene Dietrich"
];
var inspiration = [
"When you come to the end of your rope, tie a knot and hang on.<br /> ~Franklin D. Roosevelt",
"If we are facing in the right direction, all we have to do is keep on walking.<br /> ~Buddhist Saying",
"When your dreams turn to dust, vacuum.<br /> ~Author Unknown",
"Success seems to be largely a matter of hanging on after others have let go.<br /> ~William Feather"
];
var balance = [
"Even nectar is poison if taken to excess.<br /> ~Hindu Proverb",
"Physical strength is measured by what we can carry; spiritual strength by what we can bear.<br /> ~Author Unknown"
];
var happiness = [
"Life is a shipwreck but we must not forget to sing in the lifeboats.<br /> ~Voltaire",
"Wherever you go, no matter what the weather, always bring your own sunshine.<br /> ~Anthony J. D'Angelo, The College Blue Book",
"Happiness is an attitude.  We either make ourselves miserable, or happy and strong.  The amount of work is the same.<br /> ~Francesca Reigler",
"If you don't like something change it; if you can't change it, change the way you think about it.<br /> ~Mary Engelbreit",
"So often time it happens, we all live our life in chains, and we never even know we have the key.<br /> ~The Eagles, 'Already Gone'",
"Blessed is he who expects nothing, for he shall never be disappointed.<br /> ~Attributed to both Jonathan Swift and Benjamin Franklin",
"The best things in life are unexpected - because there were no expectations.<br /> ~Eli Khamarov, Surviving on Planet Reebok",
"Look at everything as though you were seeing it either for the first or last time.<br /> ~Betty Smith",
"Being a sex symbol has to do with an attitude, not looks.  Most men think it's looks, most women know otherwise.<br /> ~Kathleen Turner",
"We cannot direct the wind but we can adjust the sails.<br /> ~Author Unknown",
"Reach for the stars, even if you have to stand on a cactus.<br /> ~Susan Longacre",
"We all live under the same sky, but we don't all have the same horizon.<br /> ~Konrad Adenauer",
"Things turn out best for the people who make the best out of the way things turn out.<br /> ~Art Linkletter",
"Unhappiness is best defined as the difference between our talents and our expectations.<br /> ~Edward de Bono, Observer, 12 June 1977",
"I have found that if you love life, life will love you back.<br /> ~Arthur Rubinstein",
"We must be willing to get rid of the life we've planned, so as to have the life that is waiting for us.<br /> ~Joseph Campbell",
"Happiness often sneaks in through a door you didn't know you left open.<br /> ~John Barrymore",
"It's never too late to have a happy childhood.<br /> ~Berke Breathed",
"Of all the things you wear, your expression is the most important.<br /> ~Janet Lane",
"A truly happy person is one who can enjoy the scenery while on a detour.<br /> ~Author Unknown",
"If you want others to be happy, practice compassion.  If you want to be happy, practice compassion.<br /> ~Dalai Lama",
"The best vitamin to be a happy person is B1.<br /> ~Author Unknown",
"Happiness is when what you think, what you say, and what you do are in harmony.<br /> ~Mahatma Gandhi"
];
