// JavaScript Document

window.onload = init; 

function init()
{	
  //alert("hallo");
  var maxcolheight = $('col1').getSize().size.y;
  
  if (($('subnav').getSize().size.y + $('left_spacer').getSize().size.y + 10) > maxcolheight)
    maxcolheight = ($('subnav').getSize().size.y + $('left_spacer').getSize().size.y + 10);
  
  if($('col3'))
  {
  if ($('col3').getSize().size.y > maxcolheight) 
    maxcolheight = $('col3').getSize().size.y;

  $('left_spacer').style.height = (maxcolheight - 10 -$('subnav').getSize().size.y)+'px';
  $('content').style.height = (maxcolheight - 36 -$('img_navi').getSize().size.y)+'px';
  }
}