jQuery(document).ready(function() {

  var dhtmlmenu = new DickerFisch('#menu',{NavTimeout: new Array(99,250),Fit2ViewportClass:'nav-oben'});

  $(".boxhead > img").toggle(function(){
    $(this).parent("h3").removeClass("closed");
    $(this).parent("h3").next(".box").slideDown("normal",function(){
      $(this).prev("h3").children("img").attr({ src: "fileadmin/templates/layout/button-close-box-col2.gif", alt: "schliessen" });
    });
    },function(){
    $(this).parent("h3").next(".box").slideUp("normal",function(){
      $(this).prev("h3").children("img").attr({ src: "fileadmin/templates/layout/button-open-box-col2.gif", alt: "oeffnen" });
      $(this).prev("h3").addClass("closed");
    });
  });

  $("#h3-allinc").click(function(){
    $(this).removeClass("passiv");
    $("#allinc").show();
    $("#h3-acco").addClass("passiv");
    $("#accommodation").hide();
  });

  $("#h3-acco").click(function(){
    $(this).removeClass("passiv");
    $("#accommodation").show();
    $("#h3-allinc").addClass("passiv");
    $("#allinc").hide();
  });

  $(".topthema > div").each(function(){
    var topthemaheight = $(this).parent(".topthema").height();
    $(this).height(topthemaheight);
  });

});