﻿// JScript File
var InitColor = "#FFFFFF";
var StayOnColor = "#768F90";
var StayOnColorLeft = "#C2CECF";
function mouseover(actrl)
{
    InitColor=actrl.style.color;
    actrl.style.color=StayOnColor;
    actrl.style.textDecoration = "underline"; 
}
function mouseout(actrl)
{
    actrl.style.color=InitColor;
    actrl.style.textDecoration = "none";

}
