$(document).ready(function(){
   $.getJSON("http://twitter.com/statuses/user_timeline/ptwgs.json?callback=?", function(data) {
        var timeago = relative_time(data[0].created_at);
        
        $("#tweets").html(data[0].text);
        $("#tweets_time").html(timeago);
   }); 
});
