// text color changes decoration
var timerID = 0;

function chgColor(){

	var nColor = "#";
	for (i = 0; i < 6; i++)
	{
		nColor += (Math.floor(Math.random()*16)).toString(16);
	}
	document.getElementById("daimei").style.color = nColor;
	timerID = setTimeout("chgColor()",600);

}

