function doMouseOver(elem)
{
    elem.style.backgroundColor='#618B4B';
    status = elem.innerText;
}

function doMouseOut(elem)
{
    elem.style.backgroundColor='#B0CBA0';
    status = defaultStatus;
}