// JavaScript Document
$(document).ready(function(){
	$('.tuerchen').css('cursor', 'pointer');

   	$('.tuerchen').hover(
        function(){
            $(this).next().animate({width: "show",height: "show", opacity: "0.8" });
        },
        function() {
            $(this).next().animate({width: "hide", height: "hide", opacity: "hide" });
        });

    $('.oeffnen').click(
        function(){
            $('.offen').fadeOut();
            $(this).prev().fadeIn();
        }
    );
    
    $('.offen').click(
        function(){
        $(this).hide()
        }
        );
 });

