I have this JQuery expression
$.getJSON("http://api.flickr.com/services/feeds/photoset.gne?set=72157607523855079&nsid=9298216@N08&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>");
});
Which pulls the appropriate images from my Flickr acccount, but how do I get and the image title and the image "content"?