       prislovi = new Array(
"Be kind whenever possible. It is always possible.",
"In the practice of tolerance, one's enemy is the best teacher.",
"My religion is very simple. My religion is kindness.",
"The purpose of our lives is to be happy.",
"The roots of all goodness lie in the soil of appreciation for goodness.",
"Where ignorance is our master, there is no possibility of real peace.",
"Happiness is not something ready made. It comes from your own actions."
	);
	
	// floor je zaokrouhleni dolu, random nahodne cislo, length je delka pole (pocet polozek)
	index = Math.floor(Math.random()*prislovi.length);
	
	// vlastni vypsani konkretniho prislovi do dokumentu
	document.write(prislovi[index]);

