Подозреваю что за функцию отлипания отвечает вот эта функция:
function setStickies(howMany) {
// Step 1: Calculate how much padding the parent container should get
var paddingTop = 0;
// Total the amount of padding of stuck sections
for (var p = 0; p < howMany; p++) {
paddingTop += $sections.eq(p).outerHeight(true);
}
// Append that height to the parent wrapper
$sections.eq(0).parent().css('padding-top', paddingTop);
// Step 2: Stick the sections to be stuck (heh)
for (var s = 0; s < $sections.length; s++) {
if (howMany > 0) {
$sections.eq(s).addClass('stuck');
howMany--;
}
else {
$sections.eq(s).removeClass('stuck');
}
}
}