function mOver(x){ 
	x.className = "tdSel";
	x.style.cursor="pointer";
}

function mOut(x){
	x.className = "tdNrm";
	x.style.cursor="normal";
}
