


hex=0 // Initial color value.

function fadetext(){ 
if(hex<200) { //If color is not black yet
hex+=11; // increase color darkness
document.getElementById("bannertext").style.color="rgb("+hex+","+hex+","+hex+")";
setTimeout("fadetext()",20); 
}
else
hex=0 //reset hex value
}









