﻿// JScript 文件

var currentColor; // current color

function mouseOut(element)
{
    element.style.backgroundColor=currentColor;
}

function mouseOver(element)
{
    currentColor = element.style.backgroundColor;
    element.style.backgroundColor="#E3EAEB";
}