// JavaScript Document
function changeToPointer() {
	document.body.style.cursor = "pointer";
}
function changeToCursor() {
	document.body.style.cursor = "auto";
}
