function movr(t) {
	t.style.background="lightcyan";
	t.style.cursor="hand";
}

function mout(t) {
	t.style.background="";
	t.style.cursor="default";
}

