﻿$(document).ready(function() {
  if ($('td.secondColumn').length > 0) {
    var parentHeigth = $('td.secondColumn').height();
    if ($('td.secondColumn > div#container1').length > 0) {
      $('td.secondColumn > div#container1').height(parentHeigth - 42);
    }
  }
});

