/********** Principals heights function

Ensures that neither principal has a larger box than the other

**********/

$(function() {
	height_1 = $('#bio_1').height();
	height_2 = $('#bio_2').height();
	if (height_1 < height_2) {
		$('#bio_1').css({ height:height_2 });
	} else {
		$('#bio_2').css({ height:height_1 });
	
	}
});