function resizeBackground(scrolling) {
		if ((jQuery('#content').height()+220) < jQuery(window).height()) {
			jQuery("#content").css({'height': (jQuery(window).height() -220) + 'px'});
		}
	}
	resizeBackground(false);

	jQuery(window).scroll(function() { resizeBackground(true); });
	jQuery(window).resize(function() { resizeBackground(true); });

if (jQuery('.mieter').is('div')) {	
	
	var tempHeight = jQuery('#content').height() -150 ;
	
	jQuery('#content > div').append('<div id ="temp"></div>');
				
	jQuery('.mieter').each( function() {
		jQuery(this).detach().appendTo(jQuery('#temp'));
	});

	jQuery('#temp').css({'height': tempHeight + 'px'});
};
