screenHeight = window.innerHeight;

$(document).ready(function() {
  $('a.lightview').prettyPhoto();

  $(".accordion").accordion();

  if(screenHeight > 944) {
    var difference = screenHeight-944;
    $('body').css('margin-top', difference+'px');
  }

  $('div.playlistView').scrollbar();

});

