// Toogler-Effekt z.B. in der Produkttabelle

	$(document).ready(function() {
		$('.toogler').siblings().hide();
		$('.zu').hide(); 
		$('.toogler').click(function() {
		$(this).siblings().toggle(0);
		$(this).find('.auf').toggle(0);
		$(this).find('.zu').toggle(0);
		return false;
		});
	});

