function adjustMenuX() {
	x = ((document.body.clientWidth - document.getElementById('header').clientWidth ) / 2) + 450;
	for (i in GLV_menuXY) {
		for (j in GLV_menuXY[i]) {
			if (j != 'Menu'+i) {
				GLV_menuXY[i][j][0] = x;
			}
		}
	}
}
function adjustContentHeight() {
	b=document.body.offsetHeight;
	c=document.getElementById('content');
	h=b-185-38;
	c.style.height=(h)+'px';
}

function lageResolutie() {
	t=document.getElementById('toplevelcontainer');
	t.style.height=(600)+'px';
	c=document.getElementById('content');
	h=600-185-38;
	c.style.height=(h)+'px';
}

if (window.screen.height >= 768) {
	window.onload=adjustContentHeight;
	window.onresize=adjustContentHeight;
} else {
	window.onload=lageResolutie;
	window.onresize=lageResolutie;
}