window.onload = indexInitPage;
window.onresize = resizeBoxes;

function indexInitPage()
{
  initPage();
  resizeBoxes();
}

function resizeBoxes () 
{
  var htMdis = document.getElementById("index_mdis").offsetHeight;
  var htStaffing = document.getElementById("index_staffing").offsetHeight;
  var htConsultants = document.getElementById("index_consultants").offsetHeight;

  var textMdis = document.getElementById("text_mdis");
  var textStaffing = document.getElementById("text_staffing");

  var newHtMdis = htConsultants - htMdis + textMdis.offsetHeight - 10;
  var newHtStaffing = htConsultants - htStaffing + textStaffing.offsetHeight - 10;
  
  textMdis.style.height = newHtMdis + "px";
  textStaffing.style.height = newHtStaffing + "px";
}
