
$(document).ready(function() {

  var current_height = $(".homeblog").offset().top + $(".homeblog").height();
  var target_height = $("#homeright").offset().top + $("#homeright").height();
  var delta = target_height - current_height - 7;

  $(".blogcontent").height($(".blogcontent").height()+delta);

});


