$(document).ready(function(){
  $.getJSON(
    'http://api.twitter.com/1/statuses/user_timeline.json?screen_name=lindiortega&count=3&callback=?',
    function(data) {
      $.each(data, function(i, tweet) {
        var post = $([tweet.text]).linkifyURL().linkifyUser().linkifyHash()[0];
        var tweet_id = tweet.id_str;
        var date = tweet.created_at;
        $("#tweets .index-more").before('<div class="tweet"><span class="fancy-quote">&ldquo;</span><div class="tweet-content">' + post + '</div><!--! end of .tweet-content --><div class="tweet-info"><a href="http://twitter.com/lindi/status/' + tweet_id + '" title="http://twitter.com/lindiortega/status/' + tweet_id + '"><span class="tweet-date">' + date + '</span></a></div><!--! end of .tweet-info --></div><!--! end of .tweet -->');
        $(".tweet-date").strftime("%A, %B %d %Y");
      });
    }
  );
  $(".soundcloud-toggle").click(function(event){
    $(this).next('.soundcloud').toggle();
    event.preventDefault();
  });          
  $("#photos-grid .photo").colorbox({
    maxWidth : "100%",
    maxHeight : "100%"
  });
});           
