var $j = jQuery.noConflict();

$j(document).ready(function(){
//	$j(".i_ausklapp_element").addClass("aktiv");
	$j(".i_ae_koerper").hide();
	$j(".i_ae_kopf").addClass("zu");
	$j('.i_ae_kopf').toggle(function() {
		$j(this).next().show(300);
		$j(this).removeClass("zu");
	}, function() {
		$j(this).next().hide(300);
		$j(this).addClass("zu");
	});

});
