// maximimizes each box height per row
function setHeights(row,box_find,box_set) {
	$(row).each(function() {
		if($(this).find(box_find).size() > 1) {
			var tallest = 0;
			$(this).find(box_find).each(function() {
				border = $(this).css("margin-top").replace("px","");
				tallest = Math.max( $(this).height() + ( 2 * ( border == "medium" ? 2 : border )), tallest );
			});
			$(this).find(box_set).each(function() {
				border = $(this).css("margin-top").replace("px","");
				$(this).css("height",(tallest - ( 2 * ( border == "medium" ? 2 : border )) + "px"));
			});
		}
	});
} 
