$(document).ready(

  function() { // Wait until the DOM is loaded, then go nuts

    fixVerticalDots() ;   

  } // end document.ready function

);

function fixVerticalDots () {

  var leftcolHeight  = $('div#contentLeft').height();
  var rightcolHeight = $('div#contentRight').height();
  var contentRight   = $('div#contentRight') ;

  if (leftcolHeight > rightcolHeight) {
    
    rightcolHeight = leftcolHeight ;
    contentRight.css({ 'padding-bottom' : rightcolHeight + 'px' }) ;

  }

}