jQuery(function($) { $('.tabbed').tabs(); $('.groups').accordion({ autoHeight: false, collapsible: true, header: 'h4' }); $('.scrollable').each(function() { $(this).wrap($('
').addClass('scrollable-wrapper')); }); $('.scrollable-wrapper') .autoScroll({ autoScroll: false, interval: 25, step: 5 }) .siblings('a.scroll').click(function(e) { e.preventDefault(); }); });