

$(document).ready(function() {


$('.gallery a, .lightbox').lightBox({containerResizeSpeed: 250});



  // OPEN EXTERNAL LINK
  $(".external").filter(function() {
    return this.hostname && this.hostname !== location.hostname;
  })
  .click(function() {
    window.open(this.href);
    return false;
  });
  
});

