$(document).ready(function() {		
		$('#about').hide();
		$('#wtf > a:first-child').click(function() {
			$('#about').slideToggle();
		});
});

window.onload = function() {
	$.getJSON("data/search.json", function(json){
	
		/*for(j = 0; j < json.results.length; j++) {
			if( json.results[j].from_user == 'Serif' ) {
				console.log(json.results[j].text);
			}
		}*/
	
	    for(i = 0; i < json.results.length; i++) {
	    	$('#wrapper').append(
	    		'<li class="tweet" id="' + json.results[i].id + '">'
	    	+	'<small><a href="http://twitter.com/' + json.results[i].from_user + '/statuses/' + json.results[i].id + '">' + json.results[i].created_at + '</a></small>'
	    	+	'<blockquote>' + json.results[i].text + '</blockquote>'
	    	+	'<cite>&#8212; <a href="http://twitter.com/' + json.results[i].from_user + '/">' + json.results[i].from_user + '</a></cite>'
	    	+	'</li>'
	    	), $('#loading').fadeOut(500);
	    }			
	    
	});
}