Drag problem

i have a main movie w/c is draggable and zoomable where i drag another movie on top of it. Each have its own instance names.
my problem is i cannot drag both movies.

code;

movie 1

on (press) {
startDrag(red);
startDrag(blue);
}
on (release) {
stopDrag();
}
onClipEvent (load) {
this.xHome = this._x;
this.yHome = this._y;
}

movie 2

on (press) {
startDrag(red);
startDrag(blue);
}
on (release) {
stopDrag();
}
onClipEvent (load) {
this.xHome = this._x;
this.yHome = this._y;
}

I also attached the fla.

thanks in advanced!!!

flashroiem