function toggle(id, state) {
	if (state == "on") {
		document.getElementById(id).style.display = "block";
	} else {
		document.getElementById(id).style.display = "none";
	}
}

function swapImg(id, img) {
	document.getElementById(id).src = img;
}
