Event handler timeline issue

This code is placed in a movie clip which is being told to act like a button. The rollover effect works wonderfully but it will not go to the frame labels using gotoAndPlay(“frameLabel”);
My labels in the main timeline are:
Here
There

with the first letter capitalized as shown below in the code.

What am I doing wrong? (Other than trying to use ActionScript 3.0 ;P)

stop();
var hrewind:Boolean = false;
this.addEventListener(Event.ENTER_FRAME, rewindIt);
this.addEventListener(MouseEvent.MOUSE_OVER, playIt);
this.addEventListener(MouseEvent.CLICK, loadIt);
this.addEventListener(MouseEvent.MOUSE_OUT, startRewind);

function rewindIt(e:Event){
if(hrewind) prevFrame();
}
function playIt(e:MouseEvent){
hrewind = false;
gotoAndPlay("Here");
}
function loadIt(e:MouseEvent){
gotoAndPlay("There");
}
function startRewind(e:MouseEvent){
hrewind = true;
}