window.onload = function()
{
	var window_posx;
	var window_posy;

	// FLAP
		
	/*window_posx = screen.availWidth - 105; 

	var flap = document.getElementById('flap');
	flap.style.left = window_posx + "px";*/

	// WELKOM
		
	window_posx = screen.availWidth / 3; 

	var welkom = document.getElementById('welkom');
	welkom.style.left = window_posx + "px";

	// CV

	window_posx = screen.availWidth / 2.5; 
	window_posy = screen.availHeight / 4.5;

	var cv = document.getElementById('cv');
	cv.style.left = window_posx + "px";
	cv.style.top = window_posy + "px";

	// THESIS

	window_posx = screen.availWidth / 2.5; 
	window_posy = screen.availHeight / 2;

	var thesis = document.getElementById('thesis');
	thesis.style.left = window_posx + "px";
	thesis.style.top = window_posy + "px";

	// CONTACT

	window_posx = screen.availWidth / 1.6; 
	window_posy = screen.availHeight / 6;

	var contact = document.getElementById('contact');
	contact.style.left = window_posx + "px";
	contact.style.top = window_posy + "px";

	// WEBDESIGN

	window_posx = screen.availWidth / 10; 
	window_posy = screen.availHeight / 5;

	var webdesign = document.getElementById('webdesign');
	webdesign.style.left = window_posx + "px";
	webdesign.style.top = window_posy + "px";
}