var $j = jQuery.noConflict();


$j(function() {

	/* Klapp mechanismus */

	$j('.klapp').children(':not(.auf)')
			.css({cursor:'pointer'})
			.click(function() {
				$j(this).parent().children('.auf').slideToggle('fast');
			});
	
});