Hey, have a thing where i have a million drageable objects and to make it easy i made each one of them a movieclip with this on

on (press) {
startDrag ("");
}
on (release) {
stopDrag ();
}

very copy paste friendly since the same script works on every movieclip.
Here's my question; I would like that when i click an object and start dragging it it will be brought forth to the "top layer" so to say. Ergo every thing i start drag will be shown above everything else and when i click and drag another object that object will be above everything else.