// JavaScript Document
<!-- Distributed by http://www.hypergurl.com 
var howMany = 29 
var quote = new Array(howMany+1)
quote[0]="Freedom is not worth having if it does not include the freedom to make mistakes. <br>-Mahatma Gandhi"
quote[1]="Excellence is the result of: caring more than others think is wise; risking more than others think is safe; dreaming more than others think is practical; and expecting more than others think is possible. <br>-Unknown"
quote[2]="Whenever you see a successful business, someone once made a courageous decision. <br>-Peter Drucker"
quote[3]="Stand up for what is right, even if you are standing alone. <br>-Unknown"
quote[4]="A little integrity is better than any career. <br>-Ralph Waldo Emerson"
quote[5]="The true measure of a man is how he treats someone who can do him absolutely no good. <br>-Samuel Johnson"
quote[6]="Opportunity is missed by most people because it is dressed in overalls and looks like work. <br>-Thomas Edison"
quote[7]="Tomorrow is for those who are willing to prepare for it today. <br>-Unknown"
quote[8]="Whether you believe you can or not, you are right. <br>-Henry Ford"
quote[9]="Look at a day when you are supremely satisfied at the end. It's not a day when you lounge around doing nothing; its when you had everything to do, and you've done it. <br>-Margaret Thatcher"
quote[10]="Confidence is contagious. So is lack of confidence. <br>-Vince Lombardi"
quote[11]="Individual commitment to a group effort - that is what makes a team work, a company work, a society work, a civilization work. <br>-Vince Lombardi"
quote[12]="Leaders are made, they are not born. They are made by hard effort, which is the price which all of us must pay to achieve any goal that is worthwhile. <br>-Vince Lombardi"
quote[13]="Winning is not a sometime thing; it's an all time thing. You don't win once in a while, you don't do things right once in a while, you do them right all the time. Winning is habit. Unfortunately, so is losing. <br>-Vince Lombardi"
quote[14]="While I take inspiration from the past, like most Americans, I live for the future. <br>-Ronald Reagan"
quote[15]="Those who dare to fail miserably can achieve greatly. <br>-John F. Kennedy"
quote[16]="Some people want it to happen, some wish it would happen, others make it happen. <br>-Michael Jordan"
quote[17]="Duty, Honor, Country. <br>"
quote[18]="Reason obeys itself; and ignorance submits to whatever is dictated to it. <br>-Thomas Paine"
quote[19]="That government is best which governs least. <br>-Thomas Paine"
quote[20]="It is dangerous to be right when the government is wrong. <br>-Voltaire"
quote[21]="Besides pride, loyalty, discipline, heart, and mind, confidence is the key to all the locks. <br>-Joe Paterno"
quote[22]="If you don't have integrity, you have nothing. You can't buy it. You can have all the money in the world, but if you are not a moral and ethical person, you really have nothing. <br>-Henry Kravis"
quote[23]="Duty is the sublimest word in the language. You can never do more than your duty. You should never wish to do less. <br>-Robert E. Lee"
quote[24]="The ladder of success is best climbed by stepping on the rungs of opportunity. <br>-Ayn Rand"
quote[25]="Fear has its use but cowardice has none. <br>-Mahatma Gandhi"
quote[26]="Very few [investors] want to play the catalytic role of really taking control of companies. <br>-Leon Black"
quote[27]="The most important single central fact about a free market is that no exchange takes place unless both parties benefit.<br>-Milton Friedman"
quote[28]="A creative man is motivated by the desire to achieve, not by the desire to beat others.<br>-Ayn Rand" 
quote[29]="Achieving life is not the equivalent of avoiding death.<br>-Ayn Rand" 
function rndnumber(){ 
var randscript = -1 
while (randscript < 0 || randscript > howMany || isNaN(randscript)){ 
randscript = parseInt(Math.random()*(howMany+1)) 
} return randscript 
} 

quo = rndnumber() 
quox = quote[quo] 
document.write(quox) 
// End Script--> 
