// JavaScript Document
function tdColorOn(cell) {
if (cell.id == "one"){
cell.style.color = "#FFFFFF"
cell.style.backgroundColor = "#356633"
}
if (cell.id == "two"){
cell.style.color = "#FFFFFF"
cell.style.backgroundColor = "#356633"
}
if (cell.id == "three"){
cell.style.color = "#FFFFFF"
cell.style.backgroundColor = "#356633"
}
if (cell.id == "four"){
cell.style.color = "#FFFFFF"
cell.style.backgroundColor = "#356633"
}
if (cell.id == "five"){
cell.style.color = "#FFFFFF"
cell.style.backgroundColor = "#356633"
}
if (cell.id == "six"){
cell.style.color = "#FFFFFF"
cell.style.backgroundColor = "#356633"
}
if (cell.id == "seven"){
cell.style.color = "#FFFFFF"
cell.style.backgroundColor = "#356633"
}
if (cell.id == "eight"){
cell.style.color = "#FFFFFF"
cell.style.backgroundColor = "#356633"
}
if (cell.id == "nine"){
cell.style.color = "#FFFFFF"
cell.style.backgroundColor = "#356633"
}
}
function tdColorOff(cell) {
cell.style.color = "#346632"
cell.style.backgroundColor = "#F7F7F7"
}
