колличество = 6
при нажатии на ЛЮБОЙ мувик выдает 7
Что не так?

Код:
s1="caiti/1.jpg"
s2="caiti/2.jpg"
s3="caiti/3.jpg"
s4="caiti/4.jpg"
s5="caiti/5.jpg"
s6="caiti/6.jpg"
s7="caiti/7.jpg"
s8="caiti/8.jpg"
s9="caiti/9.jpg"
s10="caiti/10.jpg"
s11="caiti/11.jpg"
s12="caiti/12.jpg"
_root.satn=1;
this.createEmptyMovieClip(_root.satn+"sat",_root.satn);
loadMovie(this["s"+_root.satn],_root.satn+"sat");
//this[_root.satn+"sat"]._xscale=this[_root.satn+"sat"]._yscale=25;
for(_root.satn;_root.satn<=_root.colichestvo;_root.satn++)
{
this.createEmptyMovieClip(_root.satn+"sat",_root.satn);
loadMovie(this["s"+_root.satn],_root.satn+"sat");
//this[_root.satn+"sat"]._xscale=this[_root.satn+"sat"]._yscale=25;
this[_root.satn+"sat"]._y=0;
this[_root.satn+"sat"]._xscale=28;
this[_root.satn+"sat"]._yscale=24;
this[_root.satn+"sat"]._y=this[_root.satn-1+"sat"]._y+129;
}
onEnterFrame=function()
{
for(k=0;k<_root.colichestvo+1;k++)
{
this[k+"sat"].onPress=function()
{
trace(k);
}
}
}