function resize()
{
	$('#bovenkant').css('width',$(window).width());
	$('#img1').css('width',$(window).width());
	$('#headerimg1').css('width',$(window).width());
	$('#content1').css('padding-top',$('#bovenkant').height()-($('#bovenkant').height() / 4));
	$('#menu').css('padding-top',$('#bovenkant').height()-27-($('#bovenkant').height() / 4));
	$('#headerimg2').css('width',$(window).width());
	$('#img2').css('width',$(window).width());
}

$(window).resize(function() {
	resize();	
});

$(document).ready(function() {
	setTimeout(resize,100);	
});
