on (press) {
	startDrag(this, true, 40, 25, 560, 375); // My States are 80 by 50
}
on (release) {                                   // The Stage is 600 by 400
	stopDrag();
	if (this.hitTest(_parent.locCT)){
		this._x=_parent.locCT._x;
		this._y=_parent.locCT._y;
		this._parent.congrats.play();  // correctMessage is 
	}else{                                    a movieClip, and is
		this._x = 46;                     building block for
		this._y = 50.8;                   the correctMessageAnimated
	}                                         movieClip symbol...
}