$(function() {

	var max = 0;
				
	$('#links .part-fourth').each(function() {
		if (max < $(this).height()) {
			max = $(this).height();
		}
	});
	
	$('#links .part-fourth').each(function() {
		$(this).css('height', max);
	});

});
