Rollover button with AS2

Hi, could anybody help me out on this?

I am trying to build a website for my sister’s wedding with photo album. Here’s the link of the flash file for your reference.
http://www.da-ric.com/main/main1.swf
Problem is when I click on the “main menu” button, it should go back to main page. It does show the main page but also shows mouse over effect of the button. I can only restore it by mouse over the button again. What I want is just load the main page without any photos after clicking “main menu” button, just as it showed before any button is clicked.

here’s the AS2 code for the button:

Action
_root.wedbtn.onEnterFrame = function() {
if (mouse_over_wedbtn) {
_root.wedbtn.nextFrame();
} else {
_root.wedbtn.prevFrame();
}
};

Button
on (rollOver) {
_root.mouse_over_wedbtn = true;
}
on (rollOut) {
_root.mouse_over_wedbtn = fstartlse;
}
on (release) {
gotoAndStop(“Scene 2”, 80);
}

Any inputs are welcome, thanks in advance!

Cheers,
Henry