jQuery(function() {  
	jQuery.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=37409293@N07&lang=en-us&format=json&jsoncallback=?", function(data){ 
	  jQuery.each(data.items, function(i,item){
		  jQuery("<img/>").attr("src", item.media.m).appendTo(".on-flickr ul")
		    	.attr('alt', item.title)
		    	.wrap("<li><a href='" + item.link + "' onclick=\"window.open(this.href);return false;\"></a></li>");
		  });
		  jQuery('.on-flickr ul li:gt(11)').remove();
		  jQuery('.on-flickr ul img').imagetool({
		  	viewportWidth: 110,
		  	viewportHeight: 112,
		  	allowZoom: false,
		  	allowPan: false
		  });
	 });	 
});