// {{{ Cheat: Match the length of the sidebars:
Event.observe(window, 'load', function() {
  var c1 = $('frontpage_col1');
  var c3 = $('frontpage_col3');

  if(!c1 || !c3) return;

  var h1 = c1.getHeight();
  var h3 = c3.getHeight();

  if(h1 > h3) {
    c1.setStyle({height: h1 + 'px'});
    c3.setStyle({height: h1 + 'px'});
  } else if(h3 > h1) {
    c1.setStyle({height: h3 + 'px'});
    c3.setStyle({height: h3 + 'px'});
  }
}); // }}}
