function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
	//group.css('min-height',tallest)
}

$(document).ready(function() {
	equalHeight($(".home #content .content_box"));
	equalHeight($(".page-id-2 #content .content_box"));
	equalHeight($(".page-id-58 #personal_classes .content_box"));
	var h1 = $('.page-id-46 #email_box').height();
	var h2 = $('.page-id-46 #phone_box').height();
	var h3 = $('.page-id-46 #contact_img').height();
	//var h4 = h1 - h3 + 24;
	//$('.page-id-46 #phone_box').height(h4);
	var h4 = h2 + h3 - 6;
	$('.page-id-46 #email_box').height(h4);
	
});