$(document).ready(function(){
	$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=43714814@N02&lang=en-us&format=json&jsoncallback=?", function(data){
		$.each(data.items, function(i,item){
			var thispic = item.media.m;
			var thiswidth = "200";
			if(i != 0) {
				thispic = thispic.replace("_m.jpg", "_s.jpg");
				thiswidth = "28";
			}
			$("<img/>").attr({
				src: thispic,
				alt: item.title,
				width: thiswidth
			}).appendTo("#fphotos").wrap("<a href=\""+item.link+"\"></a>");
			if ( i == 5 ) return false;
		});
	});
});