Add this code to make divs equal height
<script>
var maxHeight = 0;
jQuery( document ).ready(function() {
jQuery(".equalize").each(function(){
if (jQuery(this).height() > maxHeight) { maxHeight = jQuery(this).height(); }
});
jQuery(".equalize").height(maxHeight);
});
</script>