// BOTTOM BOXES EQUAL HEIGHTS
	
$(document).ready(function() {	
	
	function sortNumber(a, b) {
		return b - a;
	}

	var heights = new Array();
	$("#boxesBottom .box").each(function(index, domEle) {
		heights.push($(domEle).height());								 
	});
	
	heights.sort(sortNumber);
	
	$("#boxesBottom .box").css({"height":(heights[0] + 20) + "px"});
	
});
