function insertQuote() {
	var quote = new Array();
	quote[0] = "&#147;Nothing is worth more than this day.&#148;<br/>&#151;Goethe";
	quote[1] = "&#147;It’s no good running a pig farm badly for thirty years while saying, ‘Really I was meant to be a ballet dancer.’ By that time, pigs will be your style.&#148;<br/>&#151;Quentin Crisp";
	quote[2] = "&#147;The first step is to find out what you love—and don’t be practical about it. The second step is to start doing what you love immediately, in any small way possible.&#148;<br/>&#151;Barbara Sher";
	quote[3] = "&#147;I never did a day’s work in my life. It was all fun.&#148;<br/>&#151;Thomas Edison";
	quote[4] = "&#147;Success is getting what you want; happiness is wanting what you get.&#148;<br/>&#151;Anonymous";
	quote[5] = "&#147;Turn your stumbling blocks into stepping stones.&#148;<br/>&#151;Anonymous";
	quote[6] = "&#147;If a window of opportunity appears don't pull down the shade.&#148;<br/>&#151;Tom Peters";
	quote[7] = "&#147;If opportunity doesn’t knock, build a door.&#148;<br/>&#151;Milton Berle";
	quote[8] = "&#147;Abundance is about being rich, with or without money.&#148;<br/>&#151;Suze Orman";
	quote[9] = "&#147;If God came in and said, ‘I want you to be happy for the rest of your life,’ what would you do?&#148;<br/>&#151;Bernie Siegel";
	quote[10] = "&#147;I've never been a millionaire, but I bet I'd be darling at it.&#148;<br/>&#151;Dorothy Parker";
	quote[11] = "&#147;I have have found that most people are about as happy as they make up their minds to be.&#148;<br/>&#151;Abraham Lincoln";
	quote[12] = "&#147;It has always seemed to me that hearty laughter is a good way to jog internally without having to go outdoors.&#148;<br/>&#151;Norman Cousins";




	var rand = Math.floor(Math.random() * quote.length);
	document.write("<p style='font:bold 14px verdana,tahoma,sans-serif; font-style:italic; color:#475956; text-align:center'>"+quote[rand]+"</p>");
}
insertQuote();