
function aendernNacheinander(klasse, zeit) {
	zahl = $(klasse).length;
	if (zahl == 1) {
		$(klasse).first().fadeIn("slow");
		return;
	}

	found = false;
	$(klasse).each(function(index) {
		if (this.style.display != "none") {
			$(this).fadeOut("slow", function () {
			    if ($(this).next().length > 0) {
					$(this).next().fadeIn("slow");
			    }
			    else {
			        $(klasse).first().fadeIn("slow");
				}
			});
			found = true;
			return false;
		}
	});

	if (!found) {
		$(klasse).first().fadeIn("slow");
	}

	window.setTimeout("aendernNacheinander('" + klasse + "', " + zeit + ")", zeit);
}



