// JavaScript rowsColorChange

var orgBgcolor="";
function OverChange(obj) {
  orgBgcolor=obj.style.backgroundColor; 
  obj.style.cursor='hand';
  obj.style.backgroundColor='#FFFFDF'; 
}
function OutChange(obj) {
  obj.style.backgroundColor=orgBgcolor;
}

