Movieclip over cursor?

[FONT=“Garamond”][/FONT][SIZE=“3”][/SIZE]
Hi guys,

I’m new here but and I’m not sure how this works…
I just hope someone can help me.

I’m making a website that has a custom cursor using

Mouse.hide();

addEventListener(Event.ENTER_FRAME, newCursor);
 
function newCursor(event:Event):void {
c0.x = mouseX;
c0.y = mouseY;
}

My problem is, when I roll over a movieclip with the new cursor it goes under rather than over the movieclip. It is definitely not a problem with layers, or the arrangement of objects.

Please help. It’s driving me crazy!