hitTestObject Help Please

i want the ball to hit the brick and the brick disappears off the screen, i have put the coding in for this in the updategame function but it doesnt seem to be working, can someone have a look at the coding and see where i am going wrong? i have highligted the coding for you to identify easier, any help would really be grateful, thank you i have also uploaded the files if you want to have a look

Breakout.as

package {
    import flash.display.*;
    import flash.events.*;
    import flash.text.*;
    import flash.ui.Mouse;
    public class Breakout extends Sprite {
        var ball_mc:Ball;
        var brick:Brick;
        var xVel:int=10;
        var yVel:int=10;
        var ballXSpeed:Number = 8;//X Speed of the Ball
        var ballYSpeed:Number = 8;//Y Speed of the Ball

        var paddle_mc:Paddle;
        var brick_mc:Brick;

        function Breakout() {
            ball_mc=new Ball();
            ball_mc.x=100;
            ball_mc.y=100;
            this.addChild(ball_mc);

            brick_mc=new Brick();
            brick_mc.x=100;
            brick_mc.y=50;
            stage.addChild(brick_mc);
            
            brick_mc=new Brick();
            brick_mc.x=180;
            brick_mc.y=50;
            stage.addChild(brick_mc);
            
            brick_mc=new Brick();
            brick_mc.x=260;
            brick_mc.y=50;
            stage.addChild(brick_mc);
            
            brick_mc=new Brick();
            brick_mc.x=340;
            brick_mc.y=50;
            stage.addChild(brick_mc);
            
            brick_mc=new Brick();
            brick_mc.x=420;
            brick_mc.y=50;
            stage.addChild(brick_mc);
            
            brick_mc=new Brick();
            brick_mc.x=500;
            brick_mc.y=50;
            stage.addChild(brick_mc);

            paddle_mc=new Paddle();
            paddle_mc.x=250;
            paddle_mc.y=380;//this positions the paddle on the screen, currently at the bottom of the screen//
            this.addChild(paddle_mc);
            paddle_mc.init();
            start_btn.addEventListener(MouseEvent.CLICK,startGame);
            this.addEventListener(Event.ENTER_FRAME, updateGame);
        }
        function startGame(evt:MouseEvent) {
            this.addEventListener(Event.ENTER_FRAME,moveBall);
            start_btn.visible=false;

        **[COLOR=Red]}
        private function updateGame(e:Event) {
            paddle_mc.moveIt();
            for (var j:int = numChildren -1; j>0; j--) {
                var brick_mc = getChildAt(j);
                if (ball_mc.hitTestObject(brick_mc)) {
                    if (brick_mc != paddle_mc && brick_mc != ball_mc) {
                        removeChild(brick_mc);
                    }[/COLOR]**
                }
            }
        }
        function moveBall(event:Event):void {
            //Code for moving ball goes here
            ball_mc.x += ballXSpeed;//Move the ball horizontally
            ball_mc.y += ballYSpeed;//Move the ball vertically
            //Bouncing the ball off of the walls
            if (ball_mc.x >= stage.stageWidth-ball_mc.width) {
                //if the ball hits the right side
                //of the screen, then bounce off
                ballXSpeed *= -1;
            }
            if (ball_mc.x <= 0) {
                //if the ball hits the left side
                //of the screen, then bounce off
                ballXSpeed *= -1;
            }
            if (ball_mc.y >= stage.stageHeight-ball_mc.height) {
                //if the ball hits the bottom
                //then bounce up
                ballYSpeed *= -1;
            }
            if (ball_mc.y <= 0) {
                //if the ball hits the top
                //then bounce down
                ballYSpeed *= -1;
            }
            // ball_mc hitting the paddle
            if (ball_mc.hitTestObject(paddle_mc)) {
                calcBallAngle();
            }
            function calcBallAngle():void {
                var ballPosition:Number = ball_mc.x - paddle_mc.x;
                var hitPercent:Number = (ballPosition / (paddle_mc.width - ball_mc.width)) - .5;
                ballXSpeed = hitPercent * 10;
                ballYSpeed *= -1;

            }

        }
    }
}