function OverButton ( Button )
{
    if( !Button.disabled )
    {
        if( Button.className == "LargeButton" ||
            Button.className == "LargeButtonOver" ||
            Button.className == "LargeButtonOut" )
        {
            Button.className = "LargeButtonOver";
        }
        else
            Button.className = "ButtonOver";
    }
}

function OutButton ( Button )
{
    if( !Button.disabled )
    {
        if( Button.className == "LargeButton" ||
            Button.className == "LargeButtonOver" ||
            Button.className == "LargeButtonOut" )
        {
            Button.className = "LargeButton";
        }
        else
            Button.className = "Button";
    }
}

