var count = 0, limit = 2;
twitterlib.timeline('rem', { limit: 5 }, function (tweets) {
count++;
log('<strong>Tweets requested in hit ' + count + '</strong>');
for (var i = 0; i < tweets.length; i++) {
log(this.ify.clean(tweets[i].text));
}
if (count < limit) {
this.next();
}
});