function mo(){
	var obj=event.srcElement;

	if (event.type=="mouseover"){
		//obj.style.textDecoration="underline";
		obj.style.cursor="hand";
		//obj.style.color="grey";
	}
	else{
		obj.style.textDecoration="none";
		//obj.style.color="B22222";
	}
}