(function ($, undefined) {
	
	// Resize the background on page load
	if(document.height > window.innerHeight) {
		win_height = document.height;
	} else {
		win_height = window.innerHeight;
	}
	
	var	background_height = win_height - 150;
	
	$('#background').css('height', background_height),
	$('#samarbeidspartnere').css('height', background_height);
	
	
	// Resizes the background according to window resizing
	$(window).resize(function(data) {
		
		if(document.height > window.innerHeight) {
			win_height = document.height;
		} else {
			win_height = window.innerHeight;
		}
		
		var background_height = win_height - 150;
		
		$('#background').css('height', background_height),
		$('#samarbeidspartnere').css('height', background_height);	
		
		
		
	});
		
}(jQuery));
