// JavaScript Document
// JavaScript Document
$(document).ready(function(){
	//set de min-hoogte van midelste container
	$(window).resize(function(){
		//206 = alles wa boven is en
		//116 = de footer
		var h = $(window).height() - 45
						- $("#header").height()
						- $("#mainmenu").height()
						- $("#footer").height()
						- $("#bottom").height();

		$("#contents").css('min-height',h);
	}).resize();
});
