$(function() {
	$(".werbeform").hide();
	$('#contentMain h4').toggle(
		function() {
			$(this).next().fadeIn('slow')
			$(this).addClass('on').removeClass('off');
		},
		function() {
			$(this).next().fadeOut('slow')
			$(this).addClass('off').removeClass('on');
		}
	).addClass('off');
});

