// JavaScript Document

<!--
//元のセル背景色
var bgCell1 = "#ffffff";
//マウスが重なったときのセル背景色
var bgCell2 = "#E0FFFF";

function mouseOver(obj){
    obj.style.backgroundColor = bgCell2;
}
function mouseOut(obj){
    obj.style.backgroundColor = bgCell1;
}
//-->
