$(document).ready(function(){
  $("#tagesangebote_detail").hide();
  $("#fondue_detail").hide();
  $("#almwirtschaft_detail").hide();
  $("#italien_detail").hide();
  $("#weihnachten_detail").hide();

  $("#tagesangebote").click(function(){
    $("#tagesangebote_detail").slideToggle("slow");
    return false;
  });

  $("#fondue").click(function(){
    $("#fondue_detail").slideToggle("slow");
    return false;
  });

  $("#almwirtschaft").click(function(){
    $("#almwirtschaft_detail").slideToggle("slow");
    return false;
  });

  $("#italien").click(function(){
    $("#italien_detail").slideToggle("slow");
    return false;
  });

  $("#weihnachten").click(function(){
    $("#weihnachten_detail").slideToggle("slow");
    return false;
  });
});
