/*
 * Global site scripts
 */

jQuery(document).ready(function($) {

  // compare sidebar height with content height, and set to greater.
  if ($('#sidebar').length)
  {
    
    $('#sidebar').css('height', $('#content').outerHeight() - 22);
  }

});
