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

