$(function() {
  
  var SET_ID = "72157626908341349",
      NUM_PHOTOS = 8,
      CONTAINER = $("#homepage_photoset");


  function showPhotoset(json) {
    var thumbs = [],
        previews = [];
    $(json.photoset.photo).each(function(index, photo) {
      thumbs.push(createThumb(index, photo));
      previews.push(createPreview(index, photo));
    });
    CONTAINER.append(thumbs.join(''));
    CONTAINER.append(previews.join(''));
    CONTAINER.find('a.zoom').fancyZoom({directory: '/theme/4be78a5fdabe9d17f5000002/stylesheets/images'});
    CONTAINER.append('<p class="more"><a href="' + json.publicURL + '">See all photos &raquo;</a></p>');
  };
  
  function createThumb(index, photo) {
    return '<a class="zoom" href="#homepage_photo_' + index + '"><img src="' + photo.url_sq + '" width="' + photo.width_sq + '" height="' + photo.height_sq + '" /></a>';
  };

  function createPreview(index, photo) {
    var flickr_url = "http://www.flickr.com/photos/soho_master_hair_stylists/" + photo.id + "/in/set-" + SET_ID;
    return '<div style="display:none;" id="homepage_photo_' + index + '"><a href="' + flickr_url + '"><img src="' + photo.url_m + '" width="' + photo.width_m + '" height="' + photo.height_m + '" /><p style="text-align:center;">View &amp; comment on Flickr &raquo;</p></a></div>';
  };

  flickr.loadSet(SET_ID, showPhotoset);

});
