if (Drupal.jsEnabled) {
	$(document).ready(function () {
		$('#block-views-akkordeon-berater').click(function() {
			accordionheight =  document.getElementById('block-views-akkordeon-berater').style.height;
			alert(accordionheight);
			if (accordionheight > 20) {	
			alert("!");
				document.getElementById('block-views-akkordeon-berater').style.height = 20;
			} else {
				document.getElementById('block-views-akkordeon-berater').style.height = 200;
				alert("!!!!");
			}
		});
	});
};

