var url = "http://graph.facebook.com/235036783212284/photos/?callback=?";// アルバムのJSON取得URL
$(function(){
   $.getJSON(url,function(json){
      var items = [];
      $.each(json.data.reverse(),function(i,fb){
         items.push('<li class="fbphotos" style="background:url(' + fb.picture + fb.name + ') no-repeat center;">' + '<a href="' + fb.link + '" target=”_parent”></a></li>');
      });
      $('<ul/>', {html: items.join('')}).attr('class', 'photologbox').appendTo('#photolog');
   });
});
