

var numQuotes = 14

var quote = new Array(numQuotes);

quote[0] = "To the world, you may be only one person. But to one person, you may be the world.<p>-Unknown";

quote[1] = "Some men see things as they are and ask, &quot;Why?&quot; I dream things that never were and ask, &quot;Why not?&quot; <p>-Robert Kennedy";

quote[2] = "If I let them go, I'll be outdone. But if I try to catch them, I'll be outrun.<p>-from the Linkin Park song &quot;By Myself&quot;";

quote[3] = "If one only wished to be happy, this could be easily accomplished; But we wish to be happier than other people, and this is always difficult, for we believe others to be happier than they are.<p>-Montesquieu";

quote[4] = "Tell me what you eat, and I will tell you what you are.<p>- Brillat-Savarin<br>from <i>Iron Chef</i>";

quote[5] = "If you want something you've never had before, you have to do something you've never done before.<p>-Unknown";

quote[6] = "There are moments which mark your life. Moments when you realize nothing will ever be the same. And time is divided into two parts. Before this and after this. <p>-from <i>Fallen</i>";

quote[7] = "Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. <p>-Albert Einstein";

quote[8] = "I do not feel obliged to believe that the same God who has endowed us with sense, reason, and intellect has intended us to forgo their use. <p>-Galileo Galilei";

quote[9] = "In the end, we will remember not the words of our enemies, but the silence of our friends. <p>-Martin Luther King, Jr.";

quote[10] = "An eye for an eye makes the whole world blind. <p>-Mahatma Gandhi";

quote[11] = "Who has never tasted bitter does not know what is sweet. <p>-German proverb";

quote[12] = "There are only 10 types of people in the world: those who understand binary, and those who don't.<p>-Unknown";

quote[13] = "We simply attempt to be fearful when others are greedy and to be greedy only when others are fearful.<p>-Warren Buffett";




now=new Date()

num=(now.getSeconds())% numQuotes;

document.write(quote[num])

