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

