
var msg = new Array;

msg[1] = " &#8220;Our remedies oft in ourselves do lie,Which we ascribe to heaven.&#8221; - William Shakespear ";
msg[2] = " &#8220;I'm not that great a singer, and the songs are the thing that I have to get to the people I'm performing for,&#8221; - Carole King ";
msg[3] = " &#8220;One sees clearly only with the heart.Anything essential is invisible to the eyes...&#8221; - Antoine de Saint-Exupery";
msg[4] = " &#8220;Courage is resistance to fear, mastery of fear -- not absence of fear.&#8221; - Mark Twain";
msg[5] = " &#8220;The good teacher explains. The superior teacher demonstrates. The great teacher inspires.&#8221; - William Arthur Ward";
msg[6] = " &#8220;If you can imagine it, you can achieve it; if you can dream it, you can become it.&#8221;  - William Arthur Ward";
msg[7] = " &#8220;What is moral is what you feel good after and what is immoral is what you feel bad after.&#8221; - Ernest Hemingway";
msg[8] = " &#8220;Strong and bitter words indicate a weak cause.&#8221; - Victor Hugo";
msg[9] = " &#8220;Believe that life is worth living and your belief will help create the fact.&#8221; - James William";
msg[10] = "&#8220;To be conscious that you are ignorant is a great step to knowledge.&#8221; - Benjamin Disraeli";
msg[11] = "&#8220;In the middle of difficulty, lies opportunity.&#8221 - Albert Einstein";
msg[12] = "&#8220;Learn from yesterday, live for today, hope for tomorrow. The important thing is not to stop questioning.&#8221; - Albert Einstein";
msg[13] = "&#8220;Don't give your advice before you are called upon.&#8221; - Erasmus Desiderius";
msg[14] = "&#8220;Well done is better than well said.&#8221; - Benjamin Franklin";
msg[15] = "&#8220;Don't find fault, find a remedy.&#8221; - Henry Ford";
msg[16] = "&#8220;You cannot teach a man anything; you can only help him to find it within himself.&#8221; - Galileo,Galilei";
msg[17] = "&#8220;We must always change, renew, rejuvenate ourselves: othewise, we harden.&#8221; - Johann Wolfgang von Goethe";
msg[18] = "&#8220;Undertake not what you cannot perform but be careful to keep your promise.&#8221; - George Washington";
msg[19] = "&#8220;A page that's read by people instead of robots is going to do better,&#8221; - Anil Dash";
msg[20] = "&#8220;Cafe : Noir comme le diable, Chaud comme l'enfer, Pur comme un ange, Doux comme l'amour.&#8221; - Talleyrand-Perigord";

i = Math.ceil(20 * Math.random() );
document.write(msg[i]);

// Math.ceil()は切り上げて整数にする
// Math.random()は0〜1の乱数を発生させる
// それに17を掛けることで0〜17の乱数にする

