  i = 0;
  function mudarCorDeTextosParaEssa (cor) {
  
    if (cor == "cinza") {
      document.getElementById("new").style.color = '#666666';
	  if (i<20){
      window.setTimeout ("mudarCorDeTextosParaEssa('vermelho')", 500);
	  i++;
	  }
    }
    else {
	
      document.getElementById("new").style.color = 'red';
	   if (i<20){
      window.setTimeout ("mudarCorDeTextosParaEssa('cinza')", 500);
	   i++;
	  }
	  
    }
  }

