На странице примера плагина, вот как используется onBefore:
onBefore:function( e, elem, $pane, $items, pos ){
/**
* 'this' is the triggered element
* e is the event object
* elem is the element we'll be scrolling to
* $pane is the element being scrolled
* $items is the items collection at this moment
* pos is the position of elem in the collection
* if it returns false, the event will be ignored
*/
//those arguments with a $ are jqueryfied, elem isn't.
}
в этой функции вы можете добавить свой активный класс и использовать функцию onAfter, чтобы удалить класс из предыдущего элемента.