/* Cor de fundo da tabela */
function mouseOver( id, color ) {
    var id = document.getElementById( id );
    id.style.backgroundColor = color;
}

function mouseOut( id, color ) {
    var id = document.getElementById( id );
    id.style.backgroundColor = color; 
}