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(14);
ideas[0] = "Who overcomes by force, hath overcome but half his foe. ~ John Milton";
ideas[1] = "We are what we repeatedly do. Excellence then, is not an act, but a habit. ~ Aristotle"
ideas[2] = "Never interrupt your enemy when he is making a mistake. ~ Napoleon Bonaparte"
ideas[3] = "Should you desire the great tranquility, prepare to sweat. ~ Hakuin"
ideas[4] = "It does not matter how slowly you go so long as you do not stop. ~ Confucius"
ideas[5] = "The more you sweat in training, the less you will bleed in battle. ~ Navy Seals"
ideas[6] = "Motivation is what gets you started. Habit is what keeps you going. ~ Jim Ryun"
ideas[7] = "A journey of a thousand miles must begin with a single step. ~ Lao-Tzu"
ideas[8] = "A superior man is modest in his speech, but exceeds in his actions. ~ Confucius"
ideas[9] = "Remember... you are expressing the technique, not doing the technique. ~ Bruce Lee"
ideas[10] = "I hear and I forget. I see and I remember. I do and I understand. ~ Confucius"
ideas[11] = "A man who has attained mastery of an art reveals it in his every action. ~ Unknown"
ideas[12] = "Pain is weakness leaving the body ~ Unknown"
ideas[13] = "A dog at play has the mind of a wise martial arts master, a mind capable of perfect focus. ~ Unknown"
ideas[14] = "Pain is the best instructor, but no one wants to go to his class. ~ Choi, Hong Hi"
//ideas[15] = "16"
//ideas[16] = "17"
//ideas[17] = "18"
//ideas[18] = "19"
//ideas[19] = "20"
//ideas[20] = "21"
//ideas[21] = "22"

// The random number generator.
function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xffffffff// JavaScript Document
