$(document).ready(function(){
        $("p.more").hide();
        
        $("#boxen a").toggle(function(){
                $(this).parents("p").next(".more").show("slow");
                $(this).html("weniger lesen");
                return false;
        },function(){
                $(this).parents("p").next(".more").hide("slow");
                $(this).html("mehr");
                return false;
        });
});