I\'m basically trying to load in one random flickr image taken from a specific user and specific set which then gets displayed within a div with the id of \'flickr-wrap\'. I\'m
data.items is the array of your images, so just get the first one and don't iterate over the array.
data.items
Instead of
$.each(data.items, function(i,item){...}
do
$("").attr({src: data.items[0].media.m.replace('_m.','.')}).appendTo("#flickr-wrap");