<!--
function fitContainers()
{
  var teaserHeight = document.getElementById('teaserContainer').offsetHeight;
  var contentHeight = document.getElementById('contentContainer').offsetHeight;
  if (teaserHeight > contentHeight)
  {
    document.getElementById('contentContainer').style.height = teaserHeight+'px';
  }
}
//-->
