function hover(sid)
{
document.getElementById(sid).style.backgroundColor = '#474747';
}
function antihover(sid)
{
document.getElementById(sid).style.backgroundColor = '#525252';
}