I figured out how to get the mc to follow my cursor with this code...

Code:
this.onMouseMove = function() { 
this.mask2_mc._y=_root._ymouse-600; 
this.stripe_mc._y=_root._ymouse; 
//trace(_root._ymouse);
updateAfterEvent(); 
};

Now I need to have the mc's snap back to a given spot when the user mouses out. Any help there?