$(document).ready(function(){
	
	$('.aufzu').css({'display':'none'});
	
	$('.teaser').click(function(){
		
		if( $(this).hasClass("open")){
			$(this).children().next('.aufzu').slideUp("slow");
			$(this).removeClass("open");
		}else{
			$(this).addClass("open");
			$(this).children().next('.aufzu').slideDown("slow");
		}
			
	});
	
	$('#callback').click(function(){
		if( $(this).attr('checked')){
			$('#callback-number').fadeIn("slow");
		}else{
			$('#callback-number').fadeOut("slow");
		}
	})
	
});

