// JavaScript Document

      $(document.body).ready(function () {
        $(".line").fadeIn(7000);
      });
	  

	  $(function(){

         $(".news_head").click(function(){
         $(this).parent().find(".news_box").slideToggle(1000);
		 $(this).find(".n_plus").slideToggle(1);
		 $(this).find(".n_minus").slideToggle(1);
		 $(this).parent().find(".info_head").slideDown(1000);
		 $(this).parent().find(".info_box").slideUp(1000);
		 $(this).parent().find(".i_plus").slideDown(1000);		 
		 $(this).parent().find(".speisen_box").slideUp(1000);
		 $(this).parent().find(".s_plus").slideDown(1);	
		 $(this).parent().find(".s_minus").slideUp(1);
		  $(this).parent().find(".termine_box").slideUp(1000);
		 $(this).parent().find(".t_plus").slideDown(1);	
		 $(this).parent().find(".t_minus").slideUp(1);
         });
       });
	  
	  
	  $(function(){

         $(".termine_head").click(function(){
         $(this).parent().find(".termine_box").slideToggle(1000);
		 $(this).find(".t_plus").slideToggle(1);
		 $(this).find(".t_minus").slideToggle(1);
		 $(this).parent().find(".info_head").slideDown(1000);
		 $(this).parent().find(".info_box").slideUp(1000);
		 $(this).parent().find(".i_plus").slideDown(1000);		 
		 $(this).parent().find(".speisen_box").slideUp(1000);
		 $(this).parent().find(".s_plus").slideDown(1);	
		 $(this).parent().find(".s_minus").slideUp(1);
		 $(this).parent().find(".news_box").slideUp(1000);
		 $(this).parent().find(".n_plus").slideDown(1);	
		 $(this).parent().find(".n_minus").slideUp(1);
         });
       });
	  
	  
	   $(function(){

         $(".speisen_head").click(function(){
         $(this).parent().find(".speisen_box").slideToggle(1000);
		 $(this).find(".s_plus").slideToggle(1);
		 $(this).find(".s_minus").slideToggle(1);
		 $(this).parent().find(".info_head").slideDown(1000);
		 $(this).parent().find(".info_box").slideUp(1000);
		 $(this).parent().find(".i_plus").slideDown(1000);		
		 $(this).parent().find(".termine_box").slideUp(1000);	
		 $(this).parent().find(".t_plus").slideDown(1);	
		 $(this).parent().find(".t_minus").slideUp(1);
		 $(this).parent().find(".news_box").slideUp(1000);
		 $(this).parent().find(".n_plus").slideDown(1);	
		 $(this).parent().find(".n_minus").slideUp(1);
         });
       });
	   
	   $(function(){

         $(".info_head").click(function(){
         $(this).parent().find(".speisen_box").slideUp(1);
		 $(this).parent().find(".info_box").slideDown(1000);
		 $(this).parent().find(".info_head").slideUp(1000);
		 $(this).parent().find(".i_plus").slideUp(1000);
		 $(this).parent().find(".termine_box").slideUp(1000);	
		 $(this).parent().find(".t_plus").slideDown(1);	
		 $(this).parent().find(".t_minus").slideUp(1);
		 $(this).parent().find(".speisen_box").slideUp(1000);	
		 $(this).parent().find(".s_plus").slideDown(1);	
		 $(this).parent().find(".s_minus").slideUp(1);
		 $(this).parent().find(".news_box").slideUp(1000);
		 $(this).parent().find(".n_plus").slideDown(1);	
		 $(this).parent().find(".n_minus").slideUp(1);
         });
       });
	  
	  

		$(document).ready(function() {
			
			$("#menu2 li a").wrapInner( '<span class="out"></span>' );
			
			$("#menu2 li a").each(function() {
				$( '<span class="over">' +  $(this).text() + '</span>' ).appendTo( this );
			});

			$("#menu2 li a").hover(function() {
			
				$(".out",	this).stop().animate({'top':	'-45px'},	200); // move down - hide
				$(".over",	this).stop().animate({'top':	'0px'},		200); // move down - show

			}, function() {
				$(".out",	this).stop().animate({'top':	'0px'},		200); // move up - show
				$(".over",	this).stop().animate({'top':	'+45px'},	200); // move up - hide
			});

		});



