function TwitterAPI(){}TwitterAPI.Statuses=function(){};TwitterAPI.Statuses.user_timeline=function(b,a){requestURL="http://twitter.com/statuses/user_timeline/"+b+".json?callback=?";$.getJSON(requestURL,a)};
$(document).ready(function(){TwitterAPI.Statuses.user_timeline("JacobB333",function(b){var a="";$.each(b,function(c){tweet=this.text;created_at=new Date(this.created_at);if(c==0){$("p#current-status").html(tweet);$("#current-status-time").html(created_at)}else a+='<li class="tweets">'+tweet+" <span class='time'>("+created_at+")</span></li>"});$("ul#my-timeline").html(a)})});