//-------------Random Quotes --------------

//Create Array
quotes = new Array(10);
quotes[0] = "I want considerate people to listen to the voice of Aikido. It is not for correcting others; it is for correcting your own mind. This is Aikido. This is the mission of Aikido and should be your mission."
quotes[1] = "Aiki is not a technique to fight with or defeat the enemy. It is the way to reconcile to world and make human beings one family.";
quotes[2] = "Aikido is non-resistance. As it is non-resistant, it is always victorious.";
quotes[3] = "Those who have a warped mind, a mind of discord, have been defeated from the beginning.";
quotes[4] = "Those who do not agree with this cannot be in harmony with the universe. Their budo is that of destruction. It is not constructive budo.";
quotes[5] = "Winning means winning over the mind of discord in yourself. It is to accomplish your bestowed mission.";
quotes[6] = "This is not mere theory. You practice it. Then you will accept the great power of oneness with Nature.";
quotes[7] = "The &lsquo;Way&rsquo; means to be one with the will of the kami and practice it. If we are even slightly apart from it, it is no longer the Way.";
quotes[8] = "The devil-mind will go down in defeat and the Spirit rise up in victory. Then Aikido will bear fruit in this world.";
quotes[9] = "Without budo a nation goes to ruin, because budo is the life of loving protection and is the source of the activities of science.";

//Calculate Random Quote
index = Math.floor(Math.random()*quotes.length);