$('ul').filterJson({
		data : 'nettuts.json',
		
		complete : function(i, r) {
			$('body').prepend('<li>' + r[i].text + '</li>')
		}
	})