jQuery(document).ready(function() {
    $(document).ready(function() {
      $(".spalt:not(#om) h3,.hel:first-child").wrap('<a class="toggle" href="#" />');
      $(".spalt:not(#om) .artikel > *").not(".toggle,.hel:first-child").hide();

      $(".spalt:not(#om) .toggle").hover(function() {
        $(this).siblings().andSelf().children("h3").addClass("inv");
        }, function () {
        $(this).siblings().andSelf().children("h3").removeClass("inv");
        });


      $(".spalt:not(#om) .toggle").click(function() {
        //$("#spalt .artikel > *").not("h3").not($(this).parent().children()).slideUp(200);
        $(this).siblings().not(".toggle,.hel:first-child").slideToggle(200);
        return false;
        });
      });
    });

