Rollout state on button

Hi i’m new hear so please be gentle

Anyway, i have made a button with a rollover and rollout state.
Everything seems to work fine but only once, When you want to use the button again.
It does not seem to start again on “rollover”.
it only does the rollout script.

Any help please ;( … i am very new to this and this is my first time using flash.
but i am confident that i can learn quickly.
here is the script so far.

[COLOR=Navy]stop();

import flash.events.MouseEvent;

btn1.addEventListener(MouseEvent.MOUSE_OVER, over);

function over(event:MouseEvent){
gotoAndPlay (1)
}

btn1.addEventListener(MouseEvent.MOUSE_OUT, out);

function out(event:MouseEvent){
gotoAndPlay (6)
}[/COLOR]