/*

$(document).ready(function(){
	resize();
	$(window).bind( 'resize', function() {
		resize(); 
	});
});

function resize() {
	var DocHeight = $(document).height();
	var Height = DocHeight - $( '.Header' ).innerHeight(); 
	
	Height = Height - $('.Footer').innerHeight();
	Height = Height - 111; //Onder + bovenkant margin van de content
	
	if ( Height > 0 && Height > $( '.Content' ).innerHeight() ) {
		$( '#Content' ).css( 'height', Height );
	} else {
		$( '#Content' ).css( 'height', 'auto' );
	}
}

*/
