Load external swf, buttons don't work, tried everything, head hurts

I’ve been banging my head against the wall on this one.

I have my main site (index.swf) that I put a button on one of the sections and the actionscript on the timeline.

Here is the AS on the timeline of my main site (index.swf):


pgroup1.onPress = function(){
createEmptyMovieClip("picgroup1", 1);
picgroup1.loadMovie("http://rberry883.home.comcast.net/petpics.swf");
picgroup1._x = 0;
picgroup1._y = 160;
picgroup1.border=false;
}

** this will load the external swf (petpics.swf) just fine but the buttons don’t work. The button instance name is “pgroup1”.

And here is the AS code that is on the movie clip of my external swf (petpics.swf) that is supposed to let the buttons function:


onClipEvent(load){
        this._x = 200;
        this._y = 50;
        this.div = 5;
}
onClipEvent(enterFrame){
        this._x += (endX-_x)/div;
        this._y += (endY-_y)/div;

_parent.btnp1.onRelease=function(){
        this.endX= 200;
        this.endY= 50;
};
_parent.btnp2.onRelease=function(){
        this.endX= -50;
        this.endY= 50;
};
_parent.btnp3.onRelease=function(){
        this.endX= -300;
        this.endY= 50;
};
_parent.btnp4.onRelease=function(){
        this.endX= 200;
        this.endY= -150;
};
_parent.btnp5.onRelease=function(){
        this.endX= -50;
        this.endY= -150;
};
_parent.btnp6.onRelease=function(){
        this.endX= -300;
        this.endY= -150;
};
}

Now this swf works on its own if I take the “_parent” tags off ( I also tried with this.) but same results. The buttons have instance names btnp1 - btnp6 and are used to move the movie clip with an instance name of “se” but the buttons don’t work when loaded into my main site.

Here is my page I uploaded it to, Once loaded, click on the Photos button and then on the #1 button on the right and you’ll see the external swf load but the buttons won’t work.

My site: http://rberry883.home.comcast.net

Any help is appreciated.

rberry88