function runOnloads() {
  externalLinksNewWindows();
  //levelBottoms();
  dynImages();
  $('body').supersleight();
}
function include(file) {
  var script  = document.createElement('script');
  script.src  = '/style/js/' + file;
  script.type = 'text/javascript';
  document.getElementsByTagName('head').item(0).appendChild(script);
}

include('external-links-new-windows.js');
//include('level-bottoms.js');
include('dyn-images.js');

window.onload = runOnloads;