// Toogler-Effekt z. B. in der Partner/Empfehlen-Praemientabelle

	$(document).ready(function()
{
  
  $(".toogled").hide();
  $('.zu').hide();
  
  $(".toogler").click(function()
  {
    $(this).parent("tr").parent("tbody").next(".toogled").toggle();
	$(this).find('.auf').toggle(0);
		$(this).find('.zu').toggle(0);
  });
});
