
function changeBackground (node,color) {
  node.setAttribute("style", "background-color:"+color+";");
  node.firstChild.setAttribute("style","color:#FFFFFF;");
}

function removeBackground (node) {
  node.removeAttribute("style");
  node.firstChild.removeAttribute("style");
}
