As $.extend changes the value of the first argument, the correct command sould be:
var opts = $.extend({}, $.fn.scrollPagination.defaults, options);
Using as it is (var opts = $.extend($.fn.scrollPagination.defaults, options);), will change de defaults values for a second call.