	$(document).ready(function(){
		
		// Background calculations:
		background();
		$(window).resize(function(){
			background();
		});
			
	}); // End document ready;
	
	function background(){ 
		// Waardes:
		var height 		= $(window).height() - $("#banner").height() - 11; //11 is de margin in de banner lijnen
		var width 		= $("#banner").width();
		var content		= $('.content_box').height();
		
		//kijk of de welkoms paina niet te klein word
		if(height < 440){
			height = 440;
		}
		var logoPos		= height - 150 - $('.welkom_logo').height() - 100	//260 = top van het .welkom
		var vlagPos		= height - 150 - $('.talen').height() - 30
		
		$('.background').css({
			'width': 		width + 'px',
			'height': 		height + 'px'
		}).show();
		
		$('.welkom_logo').css({
			'top': 		logoPos + 'px'
		}).show();
		$('.welkom_rood').css({
			'top': 		(logoPos + 130) + 'px'
		}).show();
		
		$('.talen').css({
			'top': 		vlagPos + 'px'
		}).show();
		
	} // End background();
