 $(function() {  
  var lightbox2 = $("#gallery").ariaLightbox({
    imageArray: "a.seriesLightbox",
    useDimmer: true,
    pos: "auto",
    altText: function() {
      return $(this).find("img").attr("alt");
    },
    descText: function() {
      return $(this).find("img").attr("alt");
    },    
    titleText: function() {
      return "";
    },
    em: false
  });    
  $("#destroylink2").click(function (event) {
    lightbox2.ariaLightbox('destroy');
  });  
  $("#disablelink2").click(function (event) {
    lightbox2.ariaLightbox('disable');
  });  
  $("#nextlink2").click(function (event) {
    lightbox2.ariaLightbox('next');
  });  
  $("#prevlink2").click(function (event) {
    lightbox2.ariaLightbox('prev');
  });  
  $("#gallerylink1").click(function (event) {
    lightbox2.ariaLightbox('startGallery', event);
  });  
  $("#gallerylink2").click(function (event) {
    lightbox2.ariaLightbox('startGallery', event, 1);
  });      
});


$(document).ready(function(){
  $("a[href^='http']").attr('target','_blank');
     
  $("a#show-video").click(function () {  
    $("#lightbox-video, .lightbox-bg").css("display", "block");
    
    $f("player", "/flowplayer/flowplayer-3.2.7.swf", { clip: { autoPlay: true, autoBuffering: false }});
    
    $("a#close-video").click(function () {  
      $("#lightbox-video, .lightbox-bg").css("display", "none");
      $f("player").stop();
    });
  });
});


