// JavaScript Document
function makeArray(len) {
for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// you add as many quotes as you want here just make sure to change the makeArray(number)

ideas = new makeArray(68);
ideas[0] = "When you look for it, there is nothing to see.";
ideas[1] = "She acts without expectation."
ideas[2] = "When people see some things as beautiful, other things become ugly."
ideas[3] = "When the nation is unstable, people start talking about patriotism."
ideas[4] = "The tender and the weak conquer the hard and the strong."
ideas[5] = "The further one goes, The less one knows."
ideas[6] = "Give up ingenuity, renounce profit, and bandits and thieves will disappear. "
ideas[7] = "It can be called great. It isn't aware of its greatness; thus it is truly great."
ideas[8] = "My teachings are easy to understand."
ideas[9] = "When they lose their sense of awe, people turn to religion."
ideas[10] = "The weak can overcome the strong; "
ideas[11] = "The Tao of the sage is work without effort. "
ideas[12] = "When nothing is done, nothing is left undone. "
ideas[13] = "He achieves what has to be done without dwelling on it. "
ideas[14] = "The truth often sounds paradoxical. "
ideas[15] = "Yielding to force is strength."
ideas[16] = "He who is filled with Virtue is like a newborn child. "
ideas[17] = "I have no desires and people return to the good and simple life. "
ideas[18] = "Love the world as your own self; then you can truly care for all things."
ideas[19] = "He who appreciates contentment is wealthy."
ideas[20] = "That which is at rest is easily restrained, that which has not yet appeared is easily prevented."
ideas[21] = "The reason rivers and seas are called the kings of the valley is because they keep below them."
ideas[22] = "That which is well built will never be torn down. "
ideas[23] = "That which is well latched can not slip away. "
ideas[24] = "How do I know this saying is true? I observe these things and see. "
ideas[25] = "One who is filled with the Tao is like a newborn child. "
ideas[26] = "To understand harmony is to understand the Constant. To know the Constant is to be called 'enlightened'. "
ideas[27] = "Stop talking"
ideas[28] = "Those who have achieved the mysterious identity can not be approached, and they can not be alienated. "
ideas[29] = "The more prohibitions you make, the poorer people will be. "
ideas[30] = "The more weapons you possess, the greater the chaos in your country. "
ideas[31] = "The more knowledge that is acquired, the stranger the world will become. "
ideas[32] = "The more laws that you make, the greater the number of criminals. "
ideas[33] = "the Master says: I do nothing, and people become good by themselves. "
ideas[34] = "I seek peace, and people take care of their own problems. "
ideas[35] = "If a government is unobtrusive, the people become whole. "
ideas[36] = "If a government is repressive, the people become treacherous. "
ideas[37] = "Good fortune has its roots in disaster, and disaster lurks with good fortune. "
ideas[38] = "Who knows why these things happen, or when this cycle will end? "
ideas[39] = "Shut your mouth and keep still, and your life will be full of happiness."
ideas[40] = "If you talk all the time, always doing something, your life will be hopeless."
ideas[41] = "Men hate to be called powerless, insignificant, or unworthy, but that's how Masters describe themselves."
ideas[42] = "Nothing is more dangerous than desire."
ideas[43] = "If you know when enough is enough, you will always have enough."
ideas[44] = "You don't have to leave your room to understand what's happening in the world."
ideas[45] = "If you act on your ambitions, they will never pan out."
ideas[46] = "She trusts people who are trustworthy. She also trusts people who aren't trustworthy. This is true trust."
ideas[47] = "The Master gives himself up to whatever the moment brings."
ideas[48] = "He holds nothing back from life; therefore he is ready for death,"
ideas[49] = "That is why every being spontaneously honors the Tao."
ideas[50] = "Seeing into darkness is clarity."
ideas[51] = "Knowing how to yield is strength."
ideas[52] = "Use your own light and return to the source of light."
ideas[21] = "Whoever is planted in the Tao will not be rooted up."
ideas[53] = "Let it be present in the universe and the universe will sing."
ideas[54] = "How do I know this is true? By looking inside myself. "
ideas[55] = "Reason, in its eternal aspect, is unnamable."
ideas[56] = "One who knows others is clever, but one who knows himself is enlightened."
ideas[57] = "One who conquers others is powerful, but one who conquers himself is mighty."
ideas[58] = "One who knows contentment is rich and one who pushes with vigor has will."
ideas[59] = "The holy man unto death does not make himself great and can thus accomplish his greatness."
ideas[60] = "A good soldier is not violent"
ideas[61] = "A good fighter is not angry. "
ideas[62] = "A good winner is not vengeful "
ideas[63] = "A good employer is humble. "
ideas[64] = "When men lack a sense of awe, there will be disaster. "
ideas[65] = "Having little to live on, one knows better than to value life too much. "
ideas[66] = "The hard and strong will fall. The soft and weak will overcome. "
ideas[67] = "The more he does for others, the more he has. "


// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff