
  function dt_h(obj) {
    $(obj).each(function(){
      var h = $(this).height();
      $(this).prev().css("height", h+"px");
      $(this).prev().css("line-height", h+"px");
    });
  }

$(document).ready(function() {
    dt_h(".entry dd");
});

$(window).resize(function() {
  var w = $(window).width();
  if ( w > 600 ) {
    dt_h(".entry dd");
  }
  if ( w < 600 ) {
    dt_h(".entry dd");
  }
});

