document.observe('dom:loaded', function() {
  var sections = $$('#content > ul');
  
  sections.each(function(section) {
    section.down('li.two .verticalContent').setStyle({ height: section.down('li.one').getHeight() + 'px' });
  });
});
