//store the quotations in arrays
quotes = new Array(11);
authors = new Array(11);
quotes[0] = "Martial arts is an active philosophy. It is a way to express your aesthetic potential through physical movement.";
authors[0] = "Sang H. Kim";
quotes[1] = "Power and skill are cultivated they cannot be forced.";
authors[1] = "Tim Cartmell";
quotes[2] = "Humility is the essential characteristic of the true warrior. Without it he (she) is a dangerous brute who has no place in society.";
authors[2] = "C.W. Nicol";
quotes[3] = "Knowledge in martial arts actually means self-knowledge. A martial artist has to take responsibility for himself and accept the consequences of his own doing.";
authors[3] = "Bruce Lee";
quotes[4] = "Teachers open the door, but you must enter by yourself.";
authors[4] = "Chinese Proverb";
quotes[5] = "No matter how you may excel in the art of Karate, and in your scholastic endeavors, nothing is more important than your behavior and your humanity as observed in daily life.";
authors[5] = "Gichin Funakoshi";
quotes[6] = "A black belt is nothing more than a belt that goes around your waist. Being a black belt is a state of mind and attitude.";
authors[6] = "Rick English";
quotes[7] = "You may train for a long time, but if you merely move your hands and feet and jump up and down like a puppet, learning karate is not very different from learning a dance. You will never have reached the heart of the matter; you will have failed to grasp the quintessence of karate-do.";
authors[7] = "Gichin Funakoshi";
quotes[8] = "It's not just self defense, it's about...self control, body discipline, and mind discipline...and breath techniques. It involves yoga. It involves meditation. It's an art, not a sport.";
authors[8] = "Elvis Presley";
quotes[9] = "'Wushu' should be used as a broader idea for traditional kung-fu, sport wushu, shaolin martial arts, taijiquan, san shou, self-defense, etc. This is the big name 'wushu'";
authors[9] = "Wu Bin";	
quotes[10] = "You must know the importance of basics. Without them all your work is a waste of time.";
authors[10] = "Su Hua Chi";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");

//done