jQuery.fn.fadeToggle = function(speed, easing, callback) {
    return this.animate({opacity: 'toggle'}, speed, easing, callback);
};



$(document).ready(function() {

	$('.region-title').click(function() {
		//$(this).parent().find('.region-item').slideToggle('slow', function() {});
		//$(this).parent().find('.region-item').fadeIn('slow', function() {});
		$(this).parent().find('.region-item').fadeToggle();
	});
	
	$('.logbucheintragText').click(function() {
		$('#logbucheintragTextFormular').slideToggle();
	});
	$('.logbucheintragBeenden').click(function() {
		$('#logbucheintragTextFormular').slideToggle();
	});

	$('.logbucheintragBild').click(function() {
		$('#logbucheintragBildFormular').slideToggle();
	});

	$('.logbucheintragBildBeenden').click(function() {
		$('#logbucheintragBildFormular').slideToggle();
	});

});




