$.getJSON('https://api.flickr.com/services/rest/?format=json&jsoncallback=?', {
"api_key": "cc33804f6624eaea05252740e5972e95",
"method": "flickr.photos.search", //写真検索
"text": "Bar+Refaeli", //検索語
"sort": "relevance", //並べ替え relevanceは関連度の高い順
"extras": "url_m", //写真サイズ
"per_page": 60, //取得件数
"page": 1, //ページ番号
}).done(function(data) {
var html = '';
var photo = '';
for (var i = 0; i < data.photos.photo.length; i++) {
var f = data.photos.photo[i];
html += '

';
}
var options = {
autoResize:true,
outerOffset: 10, // Optional, the distance to the containers border
itemWidth: 150 // Optional, the width of a grid item
};
$('#wookmark1').html(html);
$('#wookmark1').imagesLoaded(function() {
$('#wookmark1').wookmark(options);
});
});