var text_st = new Array(
"<I>A good listener is not only popular everywhere, but after a while he gets to know something.</I><br><br>-- Wilson Mizner", 
"<I>Nothing on earth consumes a man more quickly than the passion of resentment.</I><br><br>-- Nietzsche",
"<I>Some are born great, some achieve greatness, and some have greatness thrust upon them.</I><br><br>-- William Shakespeare", 
"<I>If you think you can, you can. And if you think you can’t, you’re right.</I><br><br>-- Mary Kay Ash ", 
"<I>He that would govern others should first be master of himself.</I><br><br>-- Philip Massinger ", 
"<I>Lost time is never found again.</I><br><br>-- Benjamin Franklin ", 
"<I>If you really want to understand something, try to change it.</I><br><br>-- Kurt Lewin", 
"<I>Well begun is half done.</I><br><br>-- Aristotle ", 
"<I>Wisdom is knowing when you can’t be wise.</I><br><br>-- Paul Engle", 
"<I>The first and great commandment is: don’t let them scare you.</I><br><br>-- Elmer Davis",
"<I>Common sense is genius dressed in its working clothes.</I><br><br>-- Ralph Waldo Emerson",
"<I>Even if you’re on the right track, you’ll get run over if you just sit there.</I><br><br>-- Will Rogers",
"<I>Reason is God’s crowning gift to man.</I><br><br>-- Sophocles",
"<I>Vision is the art of seeing things invisible.</I><br><br>-- Jonathan Swift",
"<I>If you’re not being critical about your business and yourself, you should be.</I><br><br>-- Robert Heller",
"<I>Bureaucracy is nothing more than a hardening of an organization’s arteries.</I><br><br>--William P. Anthony",
"<I>Vision is the art of seeing things invisible.</I><br><br>-- Jonathan Swift",
"<I>The wave of the future is coming and there is no fighting it.</I><br><br>-- Anne Morrow Lindbergh",
"<I>Conformity is the jailer of freedom and the enemy of growth.</I><br><br>-- John F. Kennedy",
"<I>The great thing in this world is not so much where we stand, as in what direction we are moving.</I><br><br>-- Oliver Wendell Holmes",
"<I>Well begun is half done.</I><br><br>-- Aristotle",
"<I>When we all think alike, no one thinks very much.</I><br><br>-- Walter Lippmann",
"<I>Wisdom is not wisdom when it is derived from books alone.</I><br><br>-- Horace",
"<I>Change is constant.</I><br><br>-- Benjamin Disraeli");

var l = text_st.length;

var rand_no = Math.round((l-1)*Math.random());

document.write(text_st[rand_no]);
