	$(document).ready(function() {
	
		/* Alle DIV.KLEIN H2-Titel gleich hoch machen */
		var h2_max_height = 0;
		$('div.klein h2').each(function() {
			if($(this).height() > h2_max_height) {
				h2_max_height = $(this).height();
			}
		});
		$('div.klein h2').each(function() {
				$(this).height(h2_max_height);
		});
		
		/* Alle DIV.KLEIN DIVs gleich hoch machen */
		var div_max_height = 0;
		$('div.wrap').each(function() {
			if($(this).height() > div_max_height) {
				div_max_height = $(this).height();
			}
		});
		$('div.wrap').each(function() {
				$(this).height(div_max_height);
		});
		
	});

