// JavaScript Document
function mouseover(id)
{
document.getElementById(id).style.backgroundColor='#000000';
}
function mouseout(id)
{
document.getElementById(id).style.backgroundColor='';
}
