$(function() {
  $('div.home.twitter').getTwitter({
    userName: 'jackielauer',
    numTweets: 5,
    loaderText: 'Loading tweets...',
    slideIn: true,
    slideDuration: 750,
    showHeading: true,
    headingText: '<a href="http://twitter.com/jackielauer">Latest tweets</a>',
    showProfileLink: true,
    showTimestamp: true
  });
  $('span.retweet > a').each(function() {
    var login = 'huma', apiKey = 'R_f5bc62de943a864f1c0b03a535c1fa5b';
    $.ajax({
      url: 'http://api.bit.ly/v3/shorten?login=' + login + '&apiKey=' + apiKey + '&longUrl=' + encodeURIComponent(window.location) + '&callback=?',
      dataType: 'json',
      success: function(bitly) {
        $('span.retweet > a').attr(
          'href',
          'http://twitter.com/home?status=' + encodeURIComponent('RT @jackielauer ' + document.title + ' ' + bitly.data.url)
        );
      }
    });
  });
});
