(jQuery) Get max height from a set of elements
var heights = $("section > div").map(function() { return $(this).outerHeight(); }).get(), maxHeight = Math.max.apply(null, heights);