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

$(".legende").click(function(event){
      	$(this).next().slideToggle("slow");
      	return false;
	});

});

