codice:
onClipEvent (load) {
	this.stop();
}
onClipEvent(mouseMove){
    if(this.hitTest(_root._xmouse,_root._ymouse, true)){
        sopra = true;
    }else{
        sopra = false;
    }
}
onClipEvent(mouseDown){
    if(sopra){
	this.gotoAndStop(2);
	this.estratti.push(1);
    }
}