// Random quote generator

	    var quotes = new Array();
		quotes[0] = '<p>&#8220;If you are failing to plan,<br />you are planning to fail.&#8221;<br /> - Tariq Siddique.</p>';
		quotes[1] = '<p>&#8220;The vision must be followed by the venture. It is not enough to stare up the steps - we must step up the stairs.&#8221;<br />- Vance Havne</p>';
		quotes[2] = '<p>&#8220;The important thing to recognize is that it takes a team, and the team ought to get credit for the wins and the losses. Successes have many fathers, failures have none.&#8221;<br />- Philip Caldwell</p>';
		quotes[3] = '<p>&#8220;If we keep doing what we\'re doing, we\'re going to keep getting what we\'re getting.&#8221;<br />- Stephen R. Covey</p>'; 
		quotes[4] = '<p>&#8220;If you can\'t find the time to do it right the first time, how do you find the time to redo it over and over again?&#8221;<br />- Unknown</p>'; 
		quotes[5] = '<p>&#8220;Measure 3 times, cut once.&#8221;<br />- Unknown</p>';
		quotes[6] = '<p>&#8220;If you can\'t measure it, you can\'t manage it&#8221;<br />- Unknown</p>';
		quotes[7] = '<p>&#8220;Sometimes I get the feeling that the two biggest problems in America today are making ends meet -- and making meetings end!!&#8221;<br />- Robert Orben</p>';
		quotes[8] = '<p>&#8220;A group of people committed to a shared vision can accomplish the impossible&#8221;<br />- Unknown</p>';
		quotes[9] = '<p>&#8220;If you can\'t measure it, you can\'t manage it&#8221;<br />- Unknown</p>';
		quotes[10] = '<p>&#8220;A professional is a person who can do his best at a time when he doesn\'t particularly feel like it.&#8221;<br />- Alistair Cooke</p>';
		quotes[11] = '<p>&#8220;Minds are like parachutes. They only function when they are open.&#8221;<br />- Sir James Dewar, Scientist (1877-1925)</p>';
		quotes[12] = '<p>&#8220;If you can\'t describe what you are doing as a process, you don\'t know what you\'re doing.&#8221;<br />- W. Edwards Deming</p>';
		quotes[13] = '<p>&#8220;Do the right thing. It will gratify some people and astonish the rest.&#8221;<br />- Mark Twain [Samuel Langhornne Clemens] (1835-1910)</p>';
		quotes[14] = '<p>&#8220;We think in generalities, but we live in details.&#8221;<br />- Alfred North Whitehead (1861-1947)</p>';
		quotes[15] = '<p>&#8220;Do just once what others say you can\'t do, and you will never pay attention to their limitations again.&#8221;<br />- James R. Cook</p>';
		quotes[16] = '<p>&#8220;When all think alike, no one is thinking very much.&#8221;<br />- Walter Lippmann (1889-1974)</p>';
		quotes[17] = '<p>&#8220;I will not condemn you for what you did yesterday, if you do it right today.&#8221;<br />- Sheldon S. Maye</p>';
		quotes[18] = '<p>&#8220;Making the simple complicated is commonplace; making the complicated simple, awesomely simple, that\'s creativity.&#8221;<br />- Charles Mingus</p>';
		quotes[19] = '<p>&#8220;Blessed is the man who, having nothing to say, abstains from giving us wordy evidence of the fact.&#8221;<br />- George Eliot [Mary Ann Evans] (1819-1880)</p>';
		quotes[20] = '<p>&#8220;Wise men talk because they have something to say; fools, because they have to say something.&#8221;<br />- Plato (429-347 BC)</p>';
		quotes[21] = '<p>&#8220;I can\'t understand why people are frightened by new ideas. I\'m frightened of old ones.&#8221;<br />- John Cage (1912-1992)</p>';
		quotes[22] = '<p>&#8220;Every really new idea looks crazy at first.&#8221;<br />- Alfred North Whitehead (1861-1947)</p>';
		quotes[23] = '<p>&#8220;The important thing is never to stop questioning.&#8221;<br />- Albert Einstein</p>';
		quotes[24] = '<p>&#8220;I haven\'t failed, I\'ve found 10,000 ways that don\'t work.&#8221;<br />- Thomas Edison (1847-1931)</p>';
		quotes[25] = '<p>&#8220;The nice thing about standards is, there are so many to choose from.&#8221;<br />- Unknown</p>';
		quotes[26] = '<p>&#8220;Work expands to fill the time available for its completion.&#8221;<br />- C. Northcote Parkinson</p>';
		quotes[27] = '<p>&#8220;The illiterate of the 21st century will not be those who cannot read and write, but those who cannot learn, unlearn, and relearn.&#8221;<br />- Alvin Toffler</p>';
		quotes[28] = '<p>&#8220;Don\'t say you don\'t have enough time. You have exactly the same number of hours per day that were given to Helen Keller, Pasteur, Michaelangelo, Mother Teresa, Leonardo da Vinci, Thomas Jefferson, and Albert Einstein.&#8221;<br />- H. Jackson Brown</p>';
		var r;
		r = Math.floor(Math.random() * quotes.length)
		//document.write(r)
		document.write(quotes[r]);


