Mouse Position Controls Movie Clips?

Just had a quick question, I’m just having a little trouble with this photo gallery.
I want the thumbnails to slide based on where the mouse is on the screen.
Does this seem like the best approach?
I can get the thumbnails to slide but they slide when the mouse enters the area and then is moved out of the area. Instead of just when the mouse is in the area. Any idea why this would happen?

Here is the event listener that controls the moveRow function.

stage.addEventListener(Event.ENTER_FRAME, moveRow);

public function moveRow(evt:Event):void {
if (galleryCheck == true){
}else{
if(mouseY >= 570 && mouseY <= 635 && mouseX >= 622 && mouseX <= 917){
for (var i:Number=0; i<imageCount.length; i++) {
TweenLite.to(slideThumbs* as MovieClip, 50, {x:(imageCount.length * thumbnailSpacing)(-1)});
}
trace(“Slide Left”);
}else if(mouseY >= 570 && mouseY <= 635 && mouseX >= 5 && mouseX <= 300){
for (var i:Number=0; i<imageCount.length; i++) {
TweenLite.to(slideThumbs
as MovieClip, 50, {x:(imageCount.length * thumbnailSpacing)});
}
trace(“Slide Right”);
}
}
}

Thanks,
Brad