How to make my movie clip SWF show hand cursor?

I’ve made a 30 second *.avi file and converted it to SWF

It’s a banner.

And then I remembered I need to put link inside the Flash so I decompiled it and put this in *.fla file;


onMouseDown = function(){
my_url = "http://www.link.link";
getURL("http://www.link.link","_blank");
};

But that doesn’t make mouse pointer change to hand when it’s over the banner.

Any ideas how to achieve that? Thanks.