$(document).ready(function(){
	// finde das aktive menu
	active = $('div.c25l div.block:has(li.active-trail)');

	active.find('h2').click(function() {
			$(this).next().toggle('slow');
			return false;
	})

	// finde die inaktiven menues
	inactives = $('div.c25l div.block:not(:has(li.active-trail))');
	inactives.find('h2').click(function() {
			$(this).next().toggle('slow');
			return false;
		}).next().hide();
	/// fix
	$('div.c25l div.block-menu_block').find('h2').next().show();
	// fuege links ein
	$('div.c25l h2').wrapInner('<a href="javascript:void"></a>');
});

