/* MD GALERIE */
$(document).ready(function(){

	var maxDataHeight = 0;
	$('.fotonahled .data').each( function(){
		if( $(this).height() >  maxDataHeight ){
			maxDataHeight = $(this).height();
		}
	});
	if( maxDataHeight > 0 ){
		$('.fotonahled .data').height(maxDataHeight);
	}else{
		$('.fotonahled .data').hide();
	}
});

