<!-- Begin

/***********************************************
* Java Script Kit Script - © Dynamic Drive (www.javascriptkit.com)
* This notice MUST stay intact for legal use
* Visit http://www.javascriptkit.com for this script and 100s more.
* URL: http://www.javascriptkit.com/dhtmltutors/fadingtext.shtml
***********************************************/

hex=255 // Initial color value.

function fadetext(){ 
if(hex>0) { //If color is not black yet
hex-=11; // increase color darkness
document.getElementById("sample").style.color="rgb("+hex+","+hex+","+hex+")";
setTimeout("fadetext()",100); 
}
else
hex=255 //reset hex value
}

// End -->