<!--
function over(ID)
{
if (document.getElementById)
{
ID.style.backgroundColor="#dddddd";
}
}

function out(ID)
{
if (document.getElementById)
{
ID.style.backgroundColor="#efefef";
}
}

function over2(ID)
{
if (document.getElementById)
{
ID.style.backgroundColor="#00ff00";
}
}

function out2(ID)
{
if (document.getElementById)
{
ID.style.backgroundColor="#ffffff";
}
}

function over3(ID)
{
if (document.getElementById)
{
ID.style.backgroundColor="#ff0000";
ID.style.color="#ffffff";
}
}

function out3(ID)
{
if (document.getElementById)
{
ID.style.backgroundColor="#ffffff";
ID.style.color="#000000";
}
}

function over4(ID)
{
if (document.getElementById)
{
ID.style.backgroundColor="#eeeeee";
ID.style.color="#000000";
}
}

function out4(ID)
{
if (document.getElementById)
{
ID.style.backgroundColor="#ffffff";
ID.style.color="#000000";
}
}

//-->
