function swap(show) {
	var i = 1;
	var check;
	for (i = 1; check = document.getElementById('page'+i); i++) {
		check.style.display = (show==i?'block':'none');
	}
}
