window.addEvent('domready', function() {
  
  // TOP MENU
  var parentWidth = $('topMenu').getSize()['size']['x'] - 21 - 27;

  var width = 0;
  var lines = $ES('li', 'topMenu');
  lines.each(function(line) {
    width += line.getSize()['size']['x'];
  });
  
  var dist = (parentWidth - width) / (lines.length - 1);
  
  lines.slice(0, lines.length - 1).each(function(line) {
    line.setStyle('padding-right', dist);
  });
    
  // CONTENT AND SIDEBAR
  var content = $('content').getSize()['size']['y'];
  var sidebar = $('sideBar').getSize()['size']['y'];
  
  var cols = $('columns');
  
  if (sidebar > content) {
    var last = $ES('.post', 'content').getLast();
    last.setStyle('padding-bottom', last.getStyle('padding-bottom').toInt() + (sidebar - content));
    //cols.setStyle('height', cols.getStyle('height').toInt());
  }
  else {
    cols.setStyle('height', cols.getStyle('height').toInt() + (content - sidebar));
  }
      
});