$(document).ready(function(){
  getFavTweets();
});

function getFavTweets(){
  getTwitBy('favorite', 'ndincjp', null, 1, 1);
}

function setTwit(json) {
  var html = [];
  $(json).each(function() {
    var id_str = this.id_str;
    var name = this.user.name;
    var screen_name = this.user.screen_name;
    var profile_image_url = this.user.profile_image_url;
    var twit_str = get_text_str(this.text);
    var since_str = get_since_str(this.created_at);
    var date_str = this.created_at;
    html.push(blackBirdPieHTML(id_str, name, screen_name, profile_image_url, twit_str, since_str, date_str));
  });
  $('#favTweet').html(html.join(''));
}


/*
function setTwit(json) {
  var html = [];
  $(json).each(function() {
    html.push('<li>');
    html.push(get_text_str(this.text));
    html.push('<span class="since">');
    html.push(this.created_at);
    html.push('</span>');
    html.push('</li>');
  });
  $('#update ul').html(html.join(''));
}
*/

/*

jsonp1299592406812([
  {
    "text": "giftee - Send a Small Thank You. Just launched! http:\/\/giftee.co\/",
    "favorited": false,
    "in_reply_to_screen_name": null,
    "in_reply_to_user_id": null,
    "in_reply_to_status_id_str": null,
    "source": "web",
    "contributors": null,
    "geo": null,
    "retweeted": false,
    "in_reply_to_user_id_str": null,
    "retweet_count": 0,
    "created_at": "Tue Mar 08 13:42:19 +0000 2011",
    "place": null,
    "in_reply_to_status_id": null,
    "id_str": "45117142647054336",
    "coordinates": null,
    "user": {
      "contributors_enabled": false,
      "statuses_count": 24,
      "following": null,
      "profile_sidebar_border_color": "C0DEED",
      "followers_count": 4,
      "profile_image_url": "http:\/\/a3.twimg.com\/profile_images\/1116283135\/nD_inc_normal.png",
      "description": "",
      "listed_count": 1,
      "profile_use_background_image": true,
      "url": "http:\/\/ndinc.jp",
      "profile_background_color": "C0DEED",
      "screen_name": "ndincjp",
      "profile_background_image_url": "http:\/\/a3.twimg.com\/a\/1298664727\/images\/themes\/theme1\/bg.png",
      "favourites_count": 1,
      "location": "",
      "lang": "en",
      "verified": false,
      "notifications": null,
      "time_zone": "Hawaii",
      "created_at": "Thu Dec 03 01:19:45 +0000 2009",
      "profile_text_color": "333333",
      "profile_sidebar_fill_color": "DDEEF6",
      "protected": false,
      "id_str": "94222855",
      "is_translator": false,
      "show_all_inline_media": false,
      "geo_enabled": true,
      "profile_background_tile": false,
      "friends_count": 1,
      "name": "nD inc.",
      "follow_request_sent": null,
      "id": 94222855,
      "utc_offset": -36000,
      "profile_link_color": "0084B4"
    },
    "id": 45117142647054336,
    "truncated": false
  }
]);
*/
