// JavaScript Document
function SG_quote(){
	var ranNum = Math.floor(Math.random()*32);
	var quoteArr = new Array();
		quoteArr[0] = "I not only use all the brains I have, but all I can borrow... <br>- Woodrow Wilson";
		quoteArr[1] = "I shall never use profanity except when discussing house rent and taxes...<br> - Mark Twain";
		quoteArr[2] = "When we seek to discover the best in others, we somehow bring out the best in ourselves...<br> - William Arthur Ward";
		quoteArr[3] = "A good plan executed now is far better than a perfect plan executed next week...<br> - George S. Patton";
		quoteArr[4] = "Skate to where the puck is going to be, not where it has been...<br> - Wayne Gretzky";
		
		quoteArr[5] = "Never ruin an apology with an excuse...<br> - Kimberly Johnson";
		quoteArr[6] = "It is better to know some of the questions than all of the answers...<br> - James Thurber";
		quoteArr[7] = "Sometimes the road less traveled is less traveled for a reason...<br> - Jerry Seinfeld";
		quoteArr[8] = "My interest is in the future because I am going to spend the rest of my life there...<br> - Charles Kettering";
		quoteArr[9] = "A genius is a talented person who does his homework...<br> - Thomas A. Edison";
		
		quoteArr[10] = "It is not whether you get knocked down, it is whether you get up again...<br> - Vince Lombardi";
		quoteArr[11] = "The most called-upon prequalification of a friend is an accessible ear...<br> - Maya Angelou";
		quoteArr[12] = "It is what you learn after you know it all that counts...<br> - John Wooden";
		quoteArr[13] = "Failure is the opportunity to begin again, more intelligently...<br> - Henry Ford";
		quoteArr[14] = "The most important thing in communication is to hear what isn't being said...<br> - Peter Drucker";
		
		quoteArr[15] = "A man who doesn't stand for something will fall for anything...<br> - Peter Marshall";
		quoteArr[16] = "Imagination is the true magic carpet...<br> - Norman Vincent Peale";
		quoteArr[17] = "The moment may be temporary but the memory is forever...<br> - Bud Meyer";
		quoteArr[18] = "The fragrance always stays in the hand that gives the rose...<br> - Hada Bejar";
		quoteArr[19] = "One thought driven home is better than three left on base...<br> - James Liter";
		
		quoteArr[20] = "Change starts when someone sees the next step...<br> - William Drayton";
		quoteArr[21] = "Life is like riding a bicycle.  You don’t fall off unless you stop pedaling...<br> - Claude Pepper";
		quoteArr[22] = "To be a champ is to believe in yourself when nobody else will...<br> - Sugar Ray Robinson";
		quoteArr[23] = "Your expression is the most important thing you can wear...<br> - Sid Ascher";
		quoteArr[24] = "What you think about, you bring about...<br> - Anon";
		
		quoteArr[25] = "Probably nothing in the world arouses more false hopes than the first four hours of a diet...<br> - Dan Bennett";
		quoteArr[26] = "Too much of a good thing is wonderful...<br> - Mae West";
		quoteArr[27] = "Age does not diminish the extreme disappointment of having a scoop of ice cream fall from the cone...<br> - Jim Fiebig";
		quoteArr[28] = "Top cats often begin as underdogs...<br> - Bernard Meltzer";
		quoteArr[29] = "Kindness can become its own motive. We are made kind by being kind...<br> - Eric Hoffer";
		quoteArr[30] = "Kind words are short but their echoes are endless...<br> - Mother Teresa";

		quoteArr[31] = "And the miracle is this, the more we give the more we get back...<br> - Leonard Nimoy";
	
	var qText = quoteArr[ranNum];
	//	var qText = quoteArr[14];  // Testing

	document.getElementById('quote').innerHTML=qText;
	//alert(ranNum+"---"+qText);
	}