﻿$(window).load(function () {
	var boxes = $("#page").find("div.dfind-splash-box > .box-body"),
		height = 0;

	boxes.each(function () {
		var boxHeight = $(this).innerHeight();

		if (height < boxHeight) {
			height = boxHeight;
		}
	});

	boxes.css("height", height + "px");
});
