// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
Event.observe(window, 'load', function() {
  if ($('sidebar_content')) {
    _height = $('main_content').getHeight() - $('sidebar_content').getHeight()
    _height = _height + "px"
    $('sidebar_filler').setStyle({
      height: _height
    })
  }
})
