function bgcChange(obj)
{
obj.onmouseover=function(){
obj.style.backgroundColor="#f2f2f2";
}
obj.onmouseout=function(){
obj.style.backgroundColor="#fff";
onmouseover:鼠标经过该行时
obj.style.backgroundColor="#f2f2f2";背景色变化Wie#f2f2f2
下面同理 鼠标离开时 背景色#fff