(function($) {
	var h = 0;
	$('#press li').each(function() {
		if ($(this).height() > h) {
			h = $(this).height();
		}
	});
	$('#press li, #press').each(function() {
		$(this).height(h);
	});
})(jQuery);
