﻿// JScript File

function out(obj)
{
    if (obj.className=='selected')
    {
        obj.style.backgroundColor='#d6d6d6';
    }
    else
    {
        obj.style.backgroundColor='#e6e6e6';
    }
}

function over(obj)
{
    obj.style.backgroundColor='#d6d6d6';
}

