// This file contains the quotes: add as many as you like, contained within single quotes
// characters, and seperated by commas (see below for examples). Remember; you can't use
// single quote characters (') within each quote - instead, use an escaped-single-quote
// (\') [a quote with a slash in front of it], which will be translated to a single-quote
// character when the script runs.

function randomQuote() {
	quotes = new Array(
		'&quot;Man\'s search for meaning is the primary motivation in his life ... This meaning is unique and specific in that it must and can be filled by him alone; only then does it achieve a significance which will satisfy his own will to meaning.&quot;<br><center>- Viktor Frankl, <a href="http://www.amazon.com/gp/product/0671023373/ref=ragemedall" target="_blank"><i>Man\'s Search for Meaning</i></a></center>',
		'&quot;If he stood alone in a howling wilderness he was more than a man; he was a church. He was the center of the universe; it was round him that the stars swung. &quot; <br><center>-G.K. Chesterton, <a href="http://www.amazon.com/gp/product/1842329898/ref=ragemedall" target="_blank"><i>Heretics</i></a></center>',
		'&quot;Everyone hopeless and hoping for something to hope for. &quot; <br><center>-Switchfoot, <a href="http://www.amazon.com/gp/product/B000005KYE/ref=ragemedall" target="_blank"><i>Life and Love and Why</i></a></center>'
	);
	
	return quotes[Math.floor(Math.random()*quotes.length)];
}

document.write(randomQuote());