jQuery.fn.getHeight=function() {
  var maxHeight=0;
  this.each(function(){
     if (this.offsetHeight>maxHeight) {maxHeight=this.offsetHeight;}
  });  
  return maxHeight;
};
