Hi!
function move() {
document.getElementById(this.posx).style.color = "#" + this.color;
window.setTimeout("this.move();",this.speed);}
^^
Der Fehler liegt hier:------------->
Dort gehört nämlich kein Semikolon hin. Richtig müsste es so heißen:
windowsetTimeout("this.move()", this.speed);
---------------------------------------------------------
Grüße,
Fabian St.