

jQuery(document).ready(function() {
$('.forum_list .forum_generallisting_toggle').click(function() {
        $(this).next().toggle();
        return false;
    }).next().hide();
});
