function rndQuote(quoteCount) {
	
	// Alle Quotes ausblenden
	for (i=1; i<=quoteCount; i++) {
		document.getElementById("quote"+i).style.display = "none";
	}

	// Zufallszahl zwischen 1 und quoteCount ermitteln
	n = (Math.floor(Math.random()*quoteCount+1));

	// Quote mit der ermittelten Zufallszahl einblenden
	document.getElementById("quote"+n).style.display = "block";
}
