(function($) { 
  $.fn.fetch = function() {
    return this.each(function() {
      var _panel = $(this);
      var _item = '<li><abbr class="timeago" title="<%= prettyDate(entry.published) %>"><%= prettyDate(entry.published) %></abbr><img src="<%= entry.service.iconUrl %>" /><a href="<%= entry.link %>"><%= entry.title %></a></li>';
      $.getJSON("http://friendfeed.com/api/feed/user/rares?num=5&amp;callback=?", function(activities) {
        _panel.prepend("<h1>Recent Activity</h1>");
        var _list = $('<ul class="posts"></ul>').appendTo(_panel);
        _(activities.entries).each(function(entry) {
          $(_(_item).template({entry: entry})).appendTo(_list);     
        });
      });    
    });
  };
})(jQuery);
$("#activity").fetch();
$("abbr.timeago").prettyDate();
