Added something to show the length of a number:
	Replaced:
                    $(this).html(n);
	With:
                    $(this).html(n);
                    $(this).attr('data-length', ('' + n).length);


Rewrote some deprecated code:
	Replaced:
        if (this.size() != 1)
	With:
        if (this.length != 1)


Rewrote what I assume is just a bug with the logic to decide whether the slider is visible:
	Replaced:
                    totalSlides = Math.ceil(s.nbPages / s.nbVisible);
                    bSlider = s.withSlider;
                    if (totalSlides < s.minSlidesForSlider)
	With:
                    if (s.nbPages <= s.nbVisible)


