$(function(){
  
  $.getJSON("http://api.flickr.com/services/feeds/groups_pool .gne?id=675729@N22&lang=en-us&format=json&jsoncallback=?", function(data){
    $.each(data.items, function(i,item){
      $("<img/>").attr("src", item.media.m).appendTo("#images")
        .wrap("<a href='" + item.link + "'></a>");
    });

    $("#title").html(data.title);
    $("#description").html(data.description);
    $("#link").html("<a href='"+data.link+"' target=\"_blank\">Visit the Viget Inspiration Pool!</a>");
      //Notice that the object here is "data" because that information sits outside of "items" in the JSON feed

    $('#images').cycle({
      fx:     'fade',
      speed:    'normal',
      timeout:  0,
      next:   '#next',
      prev:   '#prev'
    });
  });
  
});
