function fixdivs(){
	if(document.getElementById("layer_content_bottom_container") != null && document.getElementById("layer_nieuws") != null && document.getElementById("layer_nieuwsbrief") != null){
		var content_bottom_container = new obj("layer_content_bottom_container");
		var nieuws = new obj("layer_nieuws");
		var nieuwsbrief = new obj("layer_nieuwsbrief");
		max_height = Math.max(nieuwsbrief.h,nieuws.h);
		
		content_bottom_container.css.height = max_height + 20;
		
		content_bottom_container.showIt();
		nieuws.showIt();
		nieuwsbrief.showIt();
	}
	var bottom_img = new obj("bottom_img");
	var footer = new obj("layer_footer");
	footer.moveIt(footer.y, bottom_img.y + 232);
	footer.showIt();
}