function stretchContmitte() {

  if ( document.getElementById('subnav') && document.getElementById('contmitte') && document.getElementById('teaserspalte') )
  {
    var h_subnav = document.getElementById('subnav').offsetHeight;
    var h_contmitte = document.getElementById('contmitte').offsetHeight;
    var h_teaserspalte = document.getElementById('teaserspalte').offsetHeight;

    if ( h_contmitte < Math.max(h_subnav, h_teaserspalte, 400) )
    {
      document.getElementById('contmitte').style.height = Math.max(h_subnav, h_teaserspalte, 400) + 'px';
    }
  }
}


window.onload = function() {
  stretchContmitte();
}

window.onresize = function() {
  stretchContmitte();
}

this.name='natreen'
