﻿$(document).ready(function() {

  setInterval(function() {
    var wdt = $('#leftBar').height(); 
    if (wdt < $('#contentBox').height() - 50)
      wdt = $('#contentBox').height();

    $('#leftBar').css('height', wdt);
  }, 3000);
});