hex = 255;
dhex = 255;

function fadetext(){ 
	if(hex > 51) {
		hex-=6;
		dhex-=1; 
		//204, 51, 51
		document.getElementById("sample").style.color="rgb("+dhex+","+hex+","+hex+")";
		setTimeout("fadetext()",100); 
	}
	else {
		hex=255;
	}
}

