var hexChars = '0123456789ABCDEFEDCBA987654321'; function glowRed(id, x, speed) { var element = document.getElementById(id); var thisChar = hexChars[x % 30]; element.setAttribute('style', "color: #FF" + thisChar + thisChar + thisChar + thisChar + " !important;"); setTimeout("glowRed('" + id + "', " + ++x + ", " + speed + ")", speed); }