var autometall = {
    initForumsSlider: function() {
        $('.content.main-page #allforums .header-container .title')
            //.add('.content.main-page #allforums .header-container .forums a')
            .click(function() {
                var forum = $(this).parents('thead').next();
                if (forum.css('display') == 'none') {
                    forum.fadeIn();
                } else {
                    forum.fadeOut();
                }
                return false;
            });

        return this;
    }
}

$(function(){
    autometall
        .initForumsSlider();
});
