$(document).ready(function(){
  var searchTerm = 'NickeyMedia';
  $.getJSON( "http://search.twitter.com/search.json?q=" + searchTerm + "&callback=?", function(data) {
    $.each(data.results, function() {
      $('<div></div>')
        .hide()
        //.append('<img src="' + this.profile_image_url + '" />' )
        .append('<p><a href="http://www.twitter.com/' 
          + this.from_user + '">View</a>&nbsp;' + this.text + '</p>') 
        .appendTo('#tweets')
        .fadeIn();
    });
  });
});

