We were working on that in another thread where we had a callback, which I see is also on the page linked to in your quote:
Code:
$list.quicksand($sorted_data, $preferences, function(){
$("img").lazyload({
effect : "fadeIn"
});
});
I'm not sure if lazy load actually reloads the image or not, even if it does, since it's in the cache, it should take no time or next to no time to load it. What does take time is the effect (highlighted). So you should be able to change it to:
Code:
$list.quicksand($sorted_data, $preferences, function(){$("img").lazyload();});
That should get rid of the delay if the image(s) are already in the cache. But if they're not, it will take whatever time it takes to load them before they show up. With such small images, on most connections this will be a very short time.
Bookmarks