Car.prototype.moveRight = function (speed) {
var carSpeed = speed || Car.speed;
this.x += carSpeed;
this.carElement.css({
left: this.x,
top: this.y
});
};
Car.speed
на this.speed
, но я не хочу разбирать твой код, ибо вылезут ошибки.