Hola
adancer
Cambia esta parte del código de
fgil2:
// colorfade() partially by Marcio Galli for Netscape Communications. ////////////
frame=20;
hex=0,0,0 // Initial color value.
function colorfade() {
// 20 frames fading process
if(frame>0) {
hex+=10; // increase color value
document.getElementById("fscroller").style.color=" rgb("+hex+","+hex+","+hex+")"; // Set color value.
frame--;
setTimeout("colorfade()",100);
}
else{
document.getElementById("fscroller").style.color=" rgb(192,192,192)";
frame=20;
hex=0
Espero que te funcione. Saludos,