Help please with code animated rollover code

I am trying to make a tutorial i got from http://www.were-here.com/content/templates/articles.asp?articleid=679&zoneid=7 work and i have done everything but the code didn’t work. I have rewrote it and it also doesn’t work. Could someone please take a look at it or tell me where I can go to get a better tutorial that does the same thing.

on (rollOver)
if (_currentframe=1)
gotoAndPlay(2);
else if (_currentframe=20)
stop
else
gotoAndPlay (39-_currentframe)
end if}
end on

on (rollOut)
if (_currentframe=20)
gotoAndPlay (21)
else
gotoAndPlay (39-_currentframe)
end if
end on