$J('document').ready(function() {
    var c = $J(".addcomment");
    if (c) c.hide();

    var t = $J(".toggle");
    if (t)
      t.toggle(

            function() {
                $J(this).html("Schliessen");
                $J(".addcomment").animate({
                    height: 'show',
                    opacity: 'show'
                }, 'slow');
            },
            function() {
                $J(this).html("Kommentar hinzufügen");
                $J(".addcomment").animate({
                    height: 'hide',
                    opacity: 'hide'
                }, 'slow');
            }
            );
    $J(function() {
        $J("table.zebra tr:even").addClass("even");
        $J("table.zebra tr:odd").addClass("odd");
    });
});

