Button inside of a button

if you check out

http://ronnieswietek.com/hosted/circasurvive/

you can see that scrolling list I have. My problem is, I need the user to be able to click the “send to phone” button, but since I have RollOver and release links on the list, it wont allow me to select the send to phone button. Here is my AS…its loading the text from XML


    for (var i = 0; i < fileLength; i++) {
        var node = xml.firstChild.childNodes[2].childNodes*.attributes;
        var title:String = node.title;
        var keyID:String = node.keyID;
        var keyName:String = node.keyName;
        var fileID:String = node.fileID;
        titleAR.push(title);
        keyIDAR.push(keyID);
        keyNameAR.push(keyName);
        fileIDAR.push(fileID);
        bttnHeight = 22;
        menu.content_mc.image_mc.duplicateMovieClip("image_mc" + i,i);
        menu.content_mc["image_mc" + i].id = i;
        menu.content_mc["image_mc" + i]._y = (bttnHeight + 1) * i;
        menu.content_mc["image_mc" + i].txt.autoSize = true;
        menu.content_mc["image_mc" + i].txt.text = title;
        var mc = menu.content_mc["image_mc" + i].txt;
        menu.content_mc["image_mc" + i].price_txt._x = mc._x + mc._width + 20;
        menu.content_mc["image_mc" + i].onRelease = function() {
            loadSong(this.id);
        };
        menu.content_mc["image_mc" + i].onRollOver = function() {
            this.bar.colorTo(0xffffff,0,"easeOutExpo");
            this.txt.colorTo(0x1A1A1A,0,"easeOutExpo");
            this.price_txt.colorTo(0x1A1A1A,0,"easeOutExpo");
        };
        menu.content_mc["image_mc" + i].onRollOut = function() {
            this.bar.colorTo(0x1A1A1A,0.5,"easeOutExpo");
            this.txt.colorTo(0xffffff,0.5,"easeOutExpo");
            this.price_txt.colorTo(0xffffff,0.5,"easeOutExpo");
        };
        menu.content_mc["image_mc" + i].sendToPhone.onRelease = function() {
            trace("HI");
        };
        menu.content_mc["image_mc" + i].sendToPhone.onRollOver = function() {
            this.txt.colorTo(0xffffff,0.5,"easeOutExpo");
        };
        menu.content_mc["image_mc" + i].sendToPhone.onRollOut = function() {
            this.txt.colorTo(0x000000,0.5,"easeOutExpo");
        };
    }

any ideas?