$(function(){
        $(".ordner").click(function () {
                var schalter = $(this)
                $(this).children("ul").each( function(){
                        if ( schalter.hasClass("visible") ){
                                schalter.removeClass("visible")
                                $(this).hide()
                        } else {
                                schalter.addClass("visible")
                                $(this).show()
                        }
                });
        });
});

