#initclip
function __fire() {
this.color = new Color(this);
this.color.setRGB(16775372);
this._x = 250+Math.random()*8-2.5;
this._y = 200+Math.random()*8-2.5;
}
__fire.prototype = new MovieClip();
Object.registerClass("kiamoz", __fire);
__fire.prototype.onEnterFrame = move;
function move() {
this._len++;
this.rel_len=this._len/12;
R=255<<16;
G=(255-(this.rel_len*126)); if (G<0) G=0; G=G<<8;
B=(255-(this.rel_len*1024)); if (B<0) B=0;
this.color.setRGB(R+G+B);
this._x -= Math.random()*2.5-1.25;
this._y -=Math.random()*3+1.75;
this._alpha -= 4;
this._xscale -= 3.75;
if (this._alpha<5) {
this.removeMovieClip();
}
}
#endinitclip