// Author: 
// Gezinsbond vzw
//
// Dit script verzorgt een optimale weergave van de footer.
//
function footer(){
	positionFooter();
	// Deze code positioneert de footer, afhankelijk van de grootte van container_content.
}

function positionFooter(){
	// Deze code positioneert de footer, afhankelijk van de grootte van container_content.
	var contentHeight = document.getElementById("container_content").offsetHeight;
	var resultHeight = contentHeight + 205;
	if(resultHeight < 750){
		document.getElementById("container_footer").style.top = 750 + "px";
	} else {
		document.getElementById("container_footer").style.top = resultHeight + "px";
	}
}
