// What's on layer swap
function swapLayers(show, hide, showLink, hideLink) {
	document.getElementById(show).style.display="block";
	document.getElementById(showLink).style.backgroundPosition="right top";
	document.getElementById(hide).style.display="none";
	document.getElementById(hideLink).style.backgroundPosition="left top";
}