$(document).ready(function() {
	$('.versteckt').hide();

	$('.anzeigen').click(function() {
    	$(this).next().slideToggle('normal');
	});
});