col=255;
function fade() {
  if (document.getElementById &&  document.getElementById("fade")) {     document.getElementById("fade").style.color="rgb(" + col + "," + col + "," + col + ")"; 
    col-=9; 
    if(col>0) setTimeout('fade()', 50); 
  }
}