$(document).ready(function(){
    
  // move background positions depending on target link pattern
  $('.photo-wrapper > a[href^="http://static.purple"]')
    .css('background-position','-500px bottom');
  $('.photo-wrapper > a[href^="http://cdn.shopify.com"]')
    .css('background-position','-22px bottom');
  $('.photo-wrapper > a[href^="http://cdn.shopify.com"]') // local dev
    .css('background-position','-22px bottom');
  $('.photo-wrapper > a[href^="http://galleries.purple-diary.com/tags"]')
    .css('background-position','-500px bottom');
  // $('.photo-wrapper a[href^="http://www.purple-diary.com/photo"]')
  //   .css('background-position','-1000px bottom');
  
  // fancy box on imge enlargement
  $('a[href^="http://www.purple-diary.com/photo"] > img').nexFullsize();
  
  $('a[href^="http://cdn.shopify.com"] > img').nexFullsize();
});

