(function($) {
  $(document).ready(function() {
    $("img.lightbox").parent("a").lightBox(); // Select all links that contain an image with the class 'lightbox'. Used for the pages with single images that open in a lightbox. e.g. Swimming pools maps.
  });

  $(document).ready(function() {
    $("a.lightbox").lightBox(); // Select all links that have the class 'lightbox'. Used for the image gallery pages.
  });
})(jQuery);
