// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Karate-do begins and ends with a bow (courtesy).";
Quotation[1] = "There is no first attack (move) in karate. (In karate the initiative does not exist).";
Quotation[2] = "Karate is a great assistance (an aid) to justice.";
Quotation[3] = "First you must know (control) yourself, then you can know (control) others.";
Quotation[4] = "Spirit is more important than technique.";
Quotation[5] = "Always be ready to release your mind.";
Quotation[6] = "Misfortunes arise out of negligence (laziness).";
Quotation[7] = "Do not think that karate training is only in the dojo.";
Quotation[8] = "It will take your entire life to learn karate.";
Quotation[9] = "Put your everyday living into karate (put karate into everything you do) and you will find 'myo' (the subtle secrets, the ideal state of existence, exquisite beauty).";
Quotation[10] = "Karate is like hot water; if you do not heat it constantly, it will again become cool water.";
Quotation[11] = "Do not think about winning; think rather that you do not have to lose.";
Quotation[12] = "Move (change) according to (depending on) your opponent. (Victory depends on your ability to distinguish vulnerable points from invulnerable ones.)";
Quotation[13] = "The secret of combat resides in the art of directing it (clever fighting, trying every strategy).";
Quotation[14] = "Think of the hands and feet as swords.";
Quotation[15] = "When you leave home, think that you have numerous opponents waiting for you. (It is your behavior that invites trouble from them.)";
Quotation[16] = "Beginners must master basic stances; natural body positions are for the advanced.";
Quotation[17] = "Practicing karate correctly is one thing; engaging in a real fight is another.";
Quotation[18] = "Do not forget to correctly apply: light and heavy application of power, expansion and contraction of the body, and slowness and speed of techniques.";
Quotation[19] = "Devise at all times. (Always think and devise ways to live the Precepts every day.)";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
