Collision detection using classes

[SIZE=2]Just trying to do a collision detection between 2 instances
There is a ball movie clip created with a class called Ball.as And a player movie clip created with a class called Player.as
The player movie clip has a nested movie clip called “hit_mc” which I want to use for the collsion detection.
I am trying the following and getting no script errors but not working either

var ball:Ball;
var player:Player;
player = new Player(this.theScene);
ball = new Ball(this.theScene, 0,0,500);

if (player.hitTest(ball)) {
trace (“BALL CAUGHT!!!”);
}

Ideally I want something like
if (player.hit_mc.hitTest(ball)) {
trace (“BALL CAUGHT!!!”);
}

The superclass of both classes extends MovieClip
i.e
class Graphic extends MovieClip{

Any ideas what I need to do to get this to work?
[/SIZE]