function loadDocument() {
  jQuery('ul.sf-menu').superfish();
  
  attachEventHandler(window, "onresize", function() { setContentHeight(); });
  window.onresize = setContentHeight;
  setContentHeight();
}
function setContentHeight() {
  $("#contentTable").height( $(window).height() - 266);
}




