Menu problem

Hey everyone,

I having a problem with this menu I’m making. Everything is working pretty well,however, there is an overlapping problem within the menu once it reaches its destination. I’m going to post an .fla as well as the code here. If anyone could help me out that would be great. [AS]while (i<=2) {
i++;
bar_mc.duplicateMovieClip(“bar_mc”+i, i);
this[“bar_mc”+i]._y = (bar_mc._y-i*bar_mc._height);
}
startPos = bar_mc._y;
MovieClip.prototype.myBar = function() {
this.onEnterFrame = function() {
if (this._y <= myBoundry) {
this._y += 15;
myBottom = true;
} else {
delete this.onEnterFrame;
}
};
};

bar_mc.mybutton_3.onRelease = function() {
myBoundry = Stage.height;
bar_mc.myBar();
};
bar_mc1.mybutton_3.onRelease = function(){
myBoundry = Stage.height - bar_mc._height;
bar_mc.myBar();
bar_mc1.myBar();
}
bar_mc2.mybutton_3.onRelease = function(){
myBoundry = Stage.height - bar_mc._height * 2;
bar_mc.myBar();
bar_mc1.myBar();
bar_mc2.myBar();
}
bar_mc3.mybutton_3.onRelease = function(){
myBoundry = Stage.height - bar_mc._height * 3 ;
bar_mc.myBar();
bar_mc1.myBar();
bar_mc2.myBar();
bar_mc3.myBar();
}
[/AS]
Thanks Alot

Kyle:p: