My folio is bugged

So here is my online portfolio.

So i think there is a bug.

If you click on the portfolio button. Then click on a few things on the portfolio then it all works and its great woohoo.

But say you then go click on contact me or about me, and you then decide to go back to the portfolio. Then the side buttons on the portfolio dont work.

Since that portfolio section is an exeternal swf, and all the folio items are external - something is happening with the container that loads the folio items after another button is clicked.

I have quite alot of code and i’m not too fond of posting my whole site, so if anyone has any suggestions or would like to have a go at fixing my error you can pm me. Cheers

I will post some of the actionsript.

Here is the actionscript for the aboutme, portfolio and contact me buttons, located on the main timeline.



i = 0;
homeMovieEnd = false;
homeClick = false;
//this code is for the menu buttons
MovieClip.prototype.over = function() {
    this.gotoAndPlay("over");
};
//this code is for the menu buttons
MovieClip.prototype.out = function() {
    this.gotoAndPlay("out");
};
MovieClip.prototype.homeStart = function() {
    homeClick = true;
    container.play();
    eval(lastSection).enabled = true;
    eval(lastSection).gotoAndPlay("out");
    _root.lastSection = "";
};

//this code is for the menu buttons
MovieClip.prototype.releese = function() {
if ((_root.currMovie != undefined) && (container._currentframe < container.midframe)){
this.gotoAndPlay("out");
}else{
        if(_root.homeMovie.home == true)
    {
    _root.homeMovie.gotoAndPlay("end");
    _root.symbol.gotoAndPlay("down");
    }
    homeClick = false;
    this.enabled = false;
    eval(lastSection).enabled = true;
    homeStart = false;
    eval(lastSection).gotoAndPlay("out");
    _root.lastSection = this;
    if(homeMovieEnd == true)
{
container.loadMovie(buttonSelect + ".swf");
}
if (_root.currMovie == undefined) {

_root.currMovie = buttonSelect;
//container.loadMovie(buttonSelect + ".swf");
} else if (_root.currMovie != buttonSelect) {
if (container._currentframe >= container.midframe) {
_root.currMovie = buttonSelect;
container.play();

}
}
}
}


If you need more code just give me a yell, cheers guys