startDrag Problem

I have mc i want to drag around the stage but the button in those mc are getting thumped by the drag actions.

this is what i have on each mc which lets them be dragged and the clicked on comes to the top level:

on (press, dragOver) {
startDrag(_root.jean1);
}
on (release, rollOut, dragOut) {
stopDrag();
}
on (press, release, dragOver, dragOut) {
_root.x +=2;
_root.jean1.swapDepths(_root.x);
}

I want to target: butt1 inside jean1 mc and have it run a simple gotoAndPlay().

any help would be great thanks in advance.