// JavaScript Document indexKultur

  $(document).ready(function(){  
    
     //When mouse rolls over  
    $("ul#mainNav li").mouseover(function(){  
          $(this).stop().animate({height:'28px'},{queue:false, duration:600})  
    });  
		
		 $(".indexSchule").mouseover(function(){  
          $("ul#mainNav li.schule").stop().animate({height:'28px'},{queue:false, duration:600})  
    });
		 
		 $(".indexKultur").mouseover(function(){  
          $("ul#mainNav li.kultur").stop().animate({height:'28px'},{queue:false, duration:600})  
    });

		$(".indexRestaurant").mouseover(function(){  
          $("ul#mainNav li.restaurant").stop().animate({height:'28px'},{queue:false, duration:600})  
    });
		
		$(".indexGutshof").mouseover(function(){  
          $("ul#mainNav li.gutshof").stop().animate({height:'28px'},{queue:false, duration:600})  
    });
		
		
		$("#klapp").mouseover(function(){  
          $(this).stop().animate({height:'90px'},{queue:false, duration:600})  
    });
    
      //When mouse is removed  
        $(".indexKultur").mouseout(function(){  
          $("ul#mainNav li.kultur").stop().animate({height:'10px'},{queue:false, duration:600})  
       });
				
				$(".indexSchule").mouseout(function(){  
          $("ul#mainNav li.schule").stop().animate({height:'10px'},{queue:false, duration:600})  
       });
				
				$(".indexRestaurant").mouseout(function(){  
          $("ul#mainNav li.restaurant").stop().animate({height:'10px'},{queue:false, duration:600})  
       });
				
				$(".indexGutshof").mouseout(function(){  
          $("ul#mainNav li.gutshof").stop().animate({height:'10px'},{queue:false, duration:600})  
       });
				
				$("ul#mainNav li").mouseout(function(){  
          $(this).stop().animate({height:'10px'},{queue:false, duration:600})  
       });
				
			//When mouse is removed  
        $("#klapp").mouseout(function(){  
          $(this).stop().animate({height:'26px'},{queue:false, duration:600})  
       }); 
     
   });  