$(document).ready(function() {
    /* Dynamischer Absatz */
    var paragraph = $(".dyn_paragraph");
    // Zunaechst alle ausblenden
    paragraph.children(".dyn_description").css("display", "none");
    // Absatz einblenden
    paragraph.children(".dyn_toggle").toggle(
        function() {
            $(this).parents().children(".dyn_description").slideDown(
                function() {
                    $(this).next().removeClass("more");
                    $(this).next().addClass("less");
                }
            );
        },
        function() {
            $(this).parents().children(".dyn_description").slideUp(
                function() {
                    $(this).next().removeClass("less");
                    $(this).next().addClass("more");
                }
            );
        }
    );
    
    /* Fancybox */
    if($('a.fancybox').length > 0) {
        $('a.fancybox').fancybox();
    }
});

