// Email links - stolen from toolmantim.com (slightly modified)
$(function() {
  $(".email").each(function() {
    $(this).wrap("<a href='mailto:dylanegan@gmail.com'></a>");
  });

  $("#photostream").each(function() {
    $.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=favourite&id=71993871@N00&format=json&jsoncallback=?",
    function(data){
      $.each(data.items, function(i,item){
        var a = $("<a></a>").attr("href", item.link).appendTo("#photostream");
        var img = $("<img/>").attr("src", item.media.m).attr("title", item.title).attr("alt", item.title).appendTo(a);
        if ( i == 0 ) img.attr("id", "latestphoto");
        if ( i == 6 ) return false;
      });
    });
  });
});
