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