function chgQuote() {

	var quotes = new Array();
	var curQuote;

	quotes[0] = '"The superior person is modest in his speech, but exceeds in his actions."';
	quotes[1] = '"If you lose the ability to be humble, you will never reach the highest level of karate training."';
	quotes[2] = '"Find the kata that work for you, understand them, digest them, and stick with them for life."';
	quotes[3] = '"Life is too short to understand everything."';
	quotes[4] = '"We are facing ourselves when we have the courage to admit our faults."';

	curQuote =(quotes[(Math.floor(Math.random() * quotes.length))]);
	document.getElementById("quotebox").innerHTML = curQuote;
}


