$(document).ready(function() {	 
  if($('.home_first_column').length)
  {
    var first_height = $('.home_first_column').height();
    var second_height = $('.home_second_column').height();

    if(first_height > second_height)
    {
      $('.home_second_column').height(first_height-45);
    }
  }
});
