無限スクロールができる便利なjQueryプラグインinfinite-scroll
http://www.infinite-scroll.com/
新しく表示される要素をフェードインさせてみた。
7行目。fadeInの数字を変えるとフェードインする早さも変わる。
$('#mainWrap').infinitescroll({
navSelector : '.nextBox',
nextSelector : '.nextBox a',
itemSelector : 'article',
dataType : 'html'
},function(newElements, data, url){
$(newElements).hide().fadeIn(1000);
});