function  showColor(obj){
	obj.style.backgroundColor = '#ffffcd';
}
function  hideColor(obj){
	obj.style.backgroundColor = "";
}
function cursorHand(obj){
	obj.style.cursor =	"hand";
}
