I've got a stage with a three movie clips on the stage from left to right next to on another in a line. These clips are nested inside of a MC which is nested inside of an MC. I'm using TweenLite to make it where mousing over one of the three images expands it but I want that MC to be the to depth and right now, only the right one is. I'm trying to use the setChildAt property but I'm getting errors and I'm wondering if this is because it's clips on the stage instead of clips being called by AS3. I'd personally rather keep the clips on the stage myself. So how can I make this work using just one function? Here's my current function code:

function photoOver(evt:MouseEvent):void {
evt.target.parent.parent.stop();
this.swapChildren(DisplayObject(evt.target), this.getChildAt(numChildren-1));
TweenLite.to(evt.target, .5, {scaleX:1.5, scaleY:1.5});
}