jQuery.my_debug = function(text){
  $('#my_debug').append(text+'<br />\r\n');
}

$(document).ready(function(){

  $(document).onImagesLoad({
    selectorCallback: function($selector){
      new_height = 0;
      ideal_height = 0;
      $('.inBox').each(function(){
        new_height += $(this).height() + 13;
      });
      ideal_height = $('#division_links').height();
      if(ideal_height > 0)
        ideal_height += 6;
      ideal_height = $('#hot_jobs').height() - ideal_height;
      if(new_height < ideal_height){
        new_height = ($('.inBoxContent:last').height() + 16) + (ideal_height - new_height);
        if($("#middleCover #testimonials").length == 0) {
          $('.inBoxContent:last').animate({ height:  new_height+ 'px'}, 2000).parent().css('margin-bottom','0');
        }
      }
    }
  });

});
