Changing Cursor - 2 cursors

Hi All, I am working on a flash file where there are 5 movie clips and one button. There are info boxes opened up when mouse moves over movie clips and boxes disappear when mouse moves out. I have done this by using tell target action. On roll over it goes to the certain frame number inside movie clip and shows the info box. On roll out goes back to frame one. My problem is that I do not want hand cursor to show up when roll over on movie clip. I want regular cursor. And there is one button… I want hand to show up. My movie clip action is:
on (rollOver) {
tellTarget (teen) {
gotoAndPlay(15);
}
}
on (rollOut) {
tellTarget (teen) {
gotoAndStop(1);
}
Any help appreciated!!!
Thanks,
Yaz