// #########################################################################################################################
// #########################################################################################################################
// #########################################################################################################################
$(document).ready(function(){ 
	$(document).pngFix();
	
	var foot_interval;
 	var browserHoehe;
	var inhaltHoehe;
			
	foot_interval = setInterval(ref, 1);
  	inhaltHoehe = $("#inhalt").height();
	
	function ref() {
		browserHoehe = document.documentElement.clientHeight;	
		if((browserHoehe-377-inhaltHoehe)>=0){
			$("#hoehe").css({height:browserHoehe-377-inhaltHoehe});	
		} else {
			$("#hoehe").css({height:0});	
		};

	};
		
});
// #########################################################################################################################
// #########################################################################################################################
// #########################################################################################################################
