$(window).load(function() {
	$('body').addClass('fx');

	var maxHeight = 0;

	$('.anwalt').each(function() {
		maxHeight = Math.max(maxHeight, $(this).innerHeight());
	});
	maxHeight = Math.ceil(maxHeight / 11) * 11; // baseline-grid

	$('.anwalt').each(function() {
		$(this).css({ height: maxHeight + 'px' });
	});


});