$(document).ready(function() {
 resizebackground();
});

$(window).resize(function() {


resizebackground();



});


function resizebackground(){
// Zorgt voor het goed schalen van de achtergrond ////
if ($(document).height()>$(window).height() || $(document).width()>$(window).width())
	{
		if ($(document).height()>$(window).height())
			{
			var height = $(document).height();
			$('body').css("height", height );
			}
		
		else{
			$('body').css("height", "100%" );
		}

		if ($(document).width()>$(window).width())
			{
			var width =  $(document).width ();
			$('body').css("width", width ); 
			}
	
		else{
		$('body').css("width", "100%" );
		}
	}
	
	else{
	$('body').css("height", "100%" );
	$('body').css("width", "100%" );
	}
}
