(function($){ $.entwine('ss', function($){ $('.ss-toggle').entwine({ onadd: function() { this.accordion({ collapsible: true, active: !this.hasClass("ss-toggle-start-closed") }); this._super(); }, onremove: function() { this.accordion('destroy'); }, getTabSet: function() { return this.closest(".ss-tabset"); }, fromTabSet: { ontabsshow: function() { this.accordion("resize"); } } }); }); })(jQuery);