var pcr_gallery = (function($) {
  // module pcr_gallery
  var gallery_popup = function(href) {
    window.open(href, 'boreal_gallery_details',
      'width=850,height=750,scrollbars=yes,menubar=no,location=no,'
      +'status=yes,resizable=yes,toolbars=no'
    );
    return false;
  };

  $(document).ready(function() {
    $('.photo-image a').click(function() { return gallery_popup(this.href); });
  });
  
  return {
    'gallery_popup': gallery_popup
  };
})(jQuery);

