var currItem, 
currItem=-1

var quote=new Array(8)
quote[0]="1. It is said, \"Karmic retribution is not subject to one\'s control.\" We are driven by our karma and were born into this world to undergo the corresponding retribution. As we have created varying karma in the past, we now receive varying retribution. This is \"being entangled in the net of karma.\""
quote[1]="2. The Chinese character for meat, consists of a person being eaten by another person and a person eating. The person being eaten has transformed into an animal. The person eating and the person being eaten thus create a relationship wherein the knot of hatred cannot be untied. They take turns in dominating and preying on each other."
quote[2]="3. If we truly wish to detoxify this world, then every one of us must be vegetarian and refrain from eating meat."
quote[3]="4. The ancients said, \"The Superior One molds his own destiny.\" An upright person endowed with Way Virtue is capable of modifying his destiny and transcending fate. Why are there unpropitious happenings? It is because there is unpropitiousness in our minds which plants evil causes resulting in evil retributions. If we can rectify our wrongs and conform to wholesomeness, we will be able to draw close to auspiciousness and avoid ill omens."
quote[4]="5. It is not easy to eliminate one\'s faults, but, if one can eradicate his faults, he will have Samadhi power."
quote[5]="6. As it is said, \"Those who see my faults are my teachers.\" We should be thankful to them instead of hateful."
quote[6]="7. A respectful mind moderates an obstinate temperament. To bow to the Buddha is to bow to the Buddha of one\'s inherent nature. When one accomplishes Buddhahood in the future, this is just accomplishing the Buddhahood of one's inherent nature."
quote[7]="8. Why do people have demonic karma? This is because in past lives, they did not listen to the teachings of good knowing advisers; they did not heed the warnings of good knowing advisers. They kept having false thoughts and creating evil karma. That\'s why in this life they are always surrounded by demonic karma. On many occasions, things do not conform to their hearts\' desire."

function ShowItem(itemNo) {
	switch(itemNo) {
		case -2:
			currItem = 0;
			break;
		case -1:
			currItem = currItem - 1;
			if (currItem < 0)
				currItem = 0;
			break;
		case 1:
			currItem = currItem + 1;
			if (currItem > quote.length-1)
				currItem = quote.length-1;
			break;
		case 2:
			currItem = quote.length-1;
			break;
		default:
			break;
	}
	document.quote.text.value=quote[currItem]
}
