function mOvr(src,clrOver,ignorecursor) {
	 if (ignorecursor == true) {
	 	src.style.cursor = 'crosshair';
 	 } else {
	 	src.style.cursor = 'hand';
	 }
	 src.bgColor = clrOver;
}

function mOut(src,clrIn) {
	 src.style.cursor = 'default'; src.bgColor = clrIn;
}
