jQuery(function($) {

  //K2 fix

  if (typeof K2 !== "undefined") {
    function Lightbox() {
      this.updateImageList = function() {
        $.Lightbox.relify();
      }
    }

    var myLightbox = new Lightbox();
  }

  //Native Wordpress Gallery fix

  $(".gallery").each(function(index, obj) {
    $(obj).find("a img").closest('a').each(function (){
		if (!$(this).hasClass('ignore-lightbox')){
			$(this).closest('a').lightbox();
		}
    })
  } );

} );