put the two images on different frames in the same movieclip, and make the button code do this:
on(press)
{
if(images_mc._currentframe == 1)
{
images_mc.gotoAndStop(2);
}
else
{
images_mc.gotoAndStop(1);
}
}
if you don't like using frame number, use a boolean to record what picture is showing.