$(document).ready(function() {
    $.ajaxSetup({ cache: true });
	$('#sidebar').append('<ul id="tweets"></ul>');
    $.getJSON('http://search.twitter.com/search.json?callback=?&rpp=3&q=from:browsershake',
        function(data) {
            $.each(data.results, function(i, tweet) {
                if(tweet.text !== undefined) {
                    $('#tweets').append('<li><small title="'+tweet.created_at+'"></small>'+tweet.text+'</li>');
					$('#tweets li small').timeago();
                }
            });
        }
    );
});