﻿// JScript File

function out(obj)
{
    obj.style.backgroundImage='url(images/spacer.gif)';
}

function over(obj)
{
    obj.style.backgroundImage='url(images/home-menu-bg.gif)';
}

function outMenu(obj)
{
    if (obj.className=='selected')
    {
        obj.style.backgroundImage='url(../images/home-menu-bg.gif)';
    }
    else
    {
        obj.style.backgroundImage='url(../images/spacer.gif)';
    }
}

function overMenu(obj)
{
    obj.style.backgroundImage='url(../images/home-menu-bg.gif)';
}

function outSubmenu(obj)
{
    if (obj.className=='subselected')
    {
        obj.style.backgroundImage='url(../images/main-submenu-icon.gif)';
    }
    else
    {
        if (obj.className=='jobsselected')
        {
            obj.style.backgroundImage='url(../images/main-submenu-icon.gif)';
        }
        else
        {
            obj.style.backgroundImage='url(../images/spacer.gif)';
        }
    }
}

function overSubmenu(obj)
{
    obj.style.backgroundImage='url(../images/main-submenu-icon.gif)';
}