min = 40;
max = 200;
timeout = 6;
current = min;
change = 3;
function changehot()
{

	current += change;
	if (current >= max || current <= min)
		change = change * -1;
	document.styleSheets[0].addRule(".hot", "color:#FF"+current.toString(16)+"00");
	//document.styleSheets[0].insertRule(".hot: color:#FF"+current.toString(16)+"00", 0);
	setTimeout("changehot()",timeout);
}
setTimeout("changehot()",timeout);
