							var Quotes = {
							    randomizeQuote: function() {
							        var quote = [];
						            quote[0] = "&quot;Luck is the idol of the idle.&quot;";
						            quote[1] = "&quot;No one carrying elephant beef on his head should look for cricket underground.&quot;";
						            quote[2] = "&quot;Never ask a lady her age, her weight, or what is in her purse.&quot;";
						            quote[3] = "&quot;If a job is worth doing, it is worth doing well.&quot;";
						            quote[4] = "&quot;A clear conscience sleeps during thunder.&quot;";
						            quote[5] = "&quot;Money talks, but all it ever says is goodbye.&quot;";
						            quote[6] = "&quot;Nothing seems expensive on credit.&quot;";
						            quote[7] = "&quot;The palest ink is better than the sharpest memory.&quot;";
						            quote[8] = "&quot;When the wind rises, some people build walls, others build windmills.&quot;";
						            quote[9] = "&quot;Wealth does not pass three generations.&quot;";
						            quote[10] = "&quot;Grow a tree for ten years, grow a man for a hundred.&quot;";
						            quote[11] = "&quot;If you take care of me, I will take care of you ... &quot; &tilde; Glenn, Australia";
						            quote[12] = "&quot;Nothing should be prized more highly than the value of each day.&quot; &tilde; Goethe";
						            quote[13] = "&quot;Everything has its beauty, but not everyone sees it.&quot; &tilde; Confucius";
						            quote[14] = "&quot;I cannot teach anybody anything. I can only make them think.&quot; &tilde; Socrates";
						            quote[15] = "&quot;Tomorrow never comes.&quot;";
						            quote[16] = "&quot;Freedom is not worth having if it does not include the freedom to make mistakes.&quot; &tilde; Mahatma Gandhi";
						            quote[17] = "&quot;The herd, whether it is made of wildebeests or investors, is almost always wrong.&quot; &tilde; Barton Biggs on Investment Strategy";
						            quote[18] = "&quot;The farther behind I leave the past, the closer I am to forging my own character.&quot; &tilde; Isabelle Eberhardt";
						            quote[19] = "&quot;People grow through experience if they meet life honestly and courageously. This is how character is built.&quot; &tilde; Eleanor Roosevelt";
						            quote[20] = "&quot;Fashion is a form of ugliness so intolerable that we have to alter it every six months.&quot; &tilde; Oscar Wilde";
						            quote[21] = "&quot;Life is far too important a thing ever to talk seriously about.&quot; &tilde; Oscar Wilde";
						            quote[22] = "&quot;Familiarity breeds contempt.&quot; &tilde; Aesop, The Fox and the Lion";
						            quote[22] = "&quot;A slip of the foot you may soon recover, but a slip of the tongue you may never get over.&quot; &tilde; Benjamin Franklin";
        							var quoteLength = quote.length;
        							var randomQuote = Math.floor(Math.random() * quoteLength);
        							return Quotes.displayQuote("quoteStyle", quote[randomQuote]);
    							},
    							displayQuote: function(ctl, quote) {
							        ctl = document.getElementById(ctl);
							        ctl.innerHTML = quote;
							    }
							};
						Quotes.randomizeQuote();