$(document).ready(function() {
	var quote = [];
	quote[0] = "The greatest discovery of any generation is that human beings can alter their lives by altering the attitudes of their minds. ~ Albert Schweitzer";
	quote[1] = "To me luxury is to be at home with my daughter, and the occasional massage doesn't hurt. ~ Olivia Newton-John";
	quote[2] = "It is the false shame of fools to try to conceal wounds that have not healed. ~ Horace";
	quote[3] = "He who enjoys good health is rich, though he knows it not. ~ Italian Proverb";
	quote[4] = "Fitness - It it came in a bottle, everybody would have a great body. ~ Cher";
	quote[5] = "When I want to reward myself I get a relaxing massage. ~ Eva Longoria ";
	quote[6] = "The physician must be experienced in many things, but most assuredly in rubbing, for rubbing can bind a joint that is too loose, and loosen a joint that is too rigid. ~ Hippocrates";
	var theQuote = Math.floor(Math.random()*quote.length);
	$('#randomQuote').append(quote[theQuote]);
}); // end ready