// SpapDiv
	swapDiv			= function (el) {
		if (el.style.display == "none") {
			el.style.display	= "block";
		} else {
			el.style.display	= "none";
		}
	}
	
// SwapSpotlight
	swapSpotlight	= function() {
		swapDiv(document.getElementById('spotlight-kort'));
		swapDiv(document.getElementById('spotlight-lang'));
	}