$ = jQuery;
$(document).ready(function () {
  lightboxHeight();
});
$(window).resize(lightboxHeight);
function lightboxHeight() {
  $('#slb_slbContent').css('max-height', $(window).height());
}

function debugOutput(newLine) {
  var code = $('code.log');
  if (code.length) {
    $(code).append(newLine + "\n");
    $(code).scrollTop(50000);
  }
  if('console' in window) console.log(newLine);
}
