Change mc position when mouse stops moving

Hi guys!

I’ve got this:
http://megaswf.com/view/acfd77138f2afbd136942c83759f1c46.html

and need to add a function which changes position of those three mc’s(myMC, myKulicka,myStin) to the center whenever the MouseMove stops. Thx for any advice

Used AS:

_root.onEnterFrame=function(){
if (startMoving==true){
myMC._rotation=_xmouse;
myMC._x=_xmouse;
myMC._y=360;
myKulicka._x=_xmouse;
myKulicka._y=360;
myStin._x=_xmouse;
myStin._y=360;
}
}
myMC.onRollOver=function(){
startMoving=true;
}
myKulicka.onRollOver=function(){
startMoving=true;
}
myStin.onRollOver=function(){
startMoving=true;
}