hex=0; // Initial color value.

function fadetext(elementID){
	if(hex<255) { //If color is not black yet
		hex+=11; // increase color darkness
		document.all[elementID].style.color="rgb("+hex+","+hex+","+hex+")";
		timeout	= setTimeout("fadetext('" + elementID + "')",30); 
	}
	else
		hex=0; //reset hex value
}