excusez moi peut etre que cette solution est totalement pourrie mais ça marche, non?
function initArray() {
this.length = initArray.arguments.length;
for (var i = 0; i < this.length; i++) {
this[i] = initArray.arguments[i];
}
}
var x = 0;
var color = new initArray(
"red",
"black"
);
function chcolor(){
document.all.clignote.style.color = color[x];
(x < color.length-1) ? x++ : x = 0;
}
setInterval("chcolor()",200);
et après tu donne l'id clignote au texte que tu veux faire clignoter