Ok here's my problem...

I have a MC on stage that looks like a Newspaper page, where the content of the page (about us, gallery,contact us) appear like headings on the page. The whole page is draggable so that you could drag the page around to go to specific areas. The MC also contains clickable links inside it( contact us section has an email id which when clicked opens Outlook Express). Here's the AS i used to make the MC draggable..

newspaper_mc.onPress = function() {
startDrag(this);
};
newspaper_mc.onRelease = function() {
stopDrag();
};
newspaper_mc.onReleaseOutside = function() {
stopDrag();
};

When i hover the mouse over the links, they don't work,i.e. the cursor doesnt change to the hand icon..
Any help will be appreciated...

P.S. I'm Using Flash 8