$("a.toggle").click(function(){
                $(this).toggleClass("toggle_closed").next().slideToggle("slow");
                return false; //Prevent the browser jump to the link anchor
            });