$('ul').filterJson({
data : 'nettuts.json',
limit : 4,
anchorWrap : '<h2>',
nextText : 'See More',
prevText : 'Go Back',
transition: 'fade',
delay : 1000,
complete : function(i, r) {
$('body').prepend('<li>' + r[i].text + '</li>')
}
})