function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = "&quot;Leadership is the art of getting someone else to do something you want done because he wants to do it.&quot;<br />-Dwight D. Eisenhower"
random_text[number++] = "&quot;The best executive is the one who has sense enough to pick good men to do what he wants done, and self-restraint to keep from meddling with them while they do it.&quot;<br />-Theodore Roosevelt"
random_text[number++] = "&quot;If you do not know where you are going, any train will get you there.&quot;<br />-Douglas W. Phillips"
random_text[number++] = "&quot;Be willing to make decisions. That is the most important quality in a good leader.&quot;<br />-George S. Patton Jr."
random_text[number++] = "&quot;Management is efficiency in climbing the ladder of success; leadership determines whether the ladder is leaning against the right wall.&quot;<br />-Stephen R. Covey"
random_text[number++] = "&quot;Where there is no vision, the people perish.&quot;<br />-The Proverbs"
random_text[number++] = "&quot;Excellence is not an accomplishment. It is a spirit, a never-ending process.&quot;<br />-Lawrence M. Miller"
random_text[number++] = "&quot;A real leader faces the music, even when he doesn't like the tune.&quot;<br />-Anonymous"
random_text[number++] = "&quot;Leadership is action, not position.&quot;<br />-Donald H. McGannon"
random_text[number++] = "&quot;A little motivation will go much farther than a lot of intimidation.&quot;<br />-Anonymous"
random_text[number++] = "&quot;Vision without action is merely a dream. Action without vision just passes the time. Vision with action can change the world.&quot;<br />-Joel A. Barker"
random_text[number++] = "&quot;The whole world steps aside for the man who knows where he is going.&quot;<br />-Anonymous"
random_text[number++] = "&quot;Leaders establish the vision for the future and set the strategy for getting there; they cause change. They motivate and inspire others to go in the right direction and they, along with everyone else, sacrifice to get there.&quot;<br />-John Kotter"
random_text[number++] = "&quot;Look well to this day. Yesterday is but a dream and tomorrow is only a vision. But today well lived makes every yesterday a dream of happiness and every tomorrow a vision of hope. Look well therefore to this day.&quot;<br />-Francis Gray"
random_text[number++] = "&quot;Give to us clear vision that we may know where to stand and what to stand for.&quot;<br />-Peter Marshall"
random_text[number++] = "&quot;If I have seen further, it is by standing upon the shoulders of giants.&quot;<br />-Sir Isaac Newton"
random_text[number++] = "&quot;Where there is no vision, there is no hope.&quot;<br />-George Washington Carver"
random_text[number++] = "&quot;Every age needs men who will redeem the time by living with a vision of the things that are to be.&quot;<br />-Adlai E. Stevenson"
random_text[number++] = "&quot;Never tell people how to do things. Tell them what to do and they will surprise you with their ingenuity.&quot;<br />-George S. Patton Jr."
random_text[number++] = "&quot;When placed in command - take charge.&quot;<br />-Norman Schwarzkopf"
random_text[number++] = "&quot;A people that values its privileges above its principles soon loses both.&quot;<br />-Dwight D. Eisenhower"
random_text[number++] = "&quot;A true leader has the confidence to stand alone, the courage to make tough decisions, and the compassion to listen to the needs of others. He does not set out to be a leader, but becomes one by the equality of his actions and the integrity of his intent.&quot;<br />-Douglas MacArthur"
random_text[number++] = "&quot;Leadership is a potent combination of strategy and character. But if you must be without one, be without the strategy.&quot;<br />-Norman Schwarzkopf"
random_text[number++] = "&quot;One man with courage makes a majority.&quot;<br />-Andrew Jackson"
random_text[number++] = "&quot;Make no small plans for they have no power to stir the soul.&quot;<br />-Nicolo Machiavelli"
random_text[number++] = "&quot;He who has never learned to obey cannot be a good commander.&quot;<br />-Aristotle"
random_text[number++] = "&quot;A leader leads by example, whether he intends to or not.&quot;<br />-Anonymous"
random_text[number++] = "&quot;You can't do everything at once, but you can do something at once.&quot;<br />-Calvin Coolidge"
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);