$(document).ready(function(){	

	$("a, img").click(function(){
		$(this).blur();
	});
	
	$(".schublade").css("height","80px");
  
  
      		$(".schublade").toggle(function() {
				var autohoehe = $(this).find(".schubladeinhalt").css("height");							
				$(this).animate({height:autohoehe},{queue:false, duration:1000, easing: 'easeInOutQuart'});
				$(".klickensiehier", this).html("Zum Schließen der Produktdetails klicken Sie hier.");
				}, function() {
				$(this).animate({height:"80px"},{queue:false, duration:1000, easing: 'easeInOutQuart'});
				$(".klickensiehier", this).html("Klicken Sie hier für Produktdetails.");
			});
    
	$(".schubladekontakt").css("height","80px");
	
			$(".schubladekontakt").css("overflow","hidden").click(function() {
				var autohoehe = $(this).find(".schubladeinhalt").css("height");							
				$(this).animate({height:autohoehe},{queue:false, duration:1000, easing: 'easeInOutQuart'});	
				$(".klickensiehier", this).css("visibility","hidden");
			});

});
