Help with tweening photo gallery

Hi everyone, I’m really stuck with this problem. I have a sliding photo gallery that uses thumbnails on the left side, and next and previous buttons to scroll through the images.

I have the next and prev btns functionality working. The problem is I can’t get the thumbnails working so when you click on them the main image slides into place. Please any help would be so appreciated!!!

There are 6 images in total. I’ve created instances of the first one (thumb1Press). Ideally it should slide the gallery back into place based on its relative position.

You can see the SWF here: http://www.media77.ca/flashtest/image_slideshow.swf

Here is the code:

import fl.transitions.easing.;
import fl.transitions.
;

//know what image to play
var count :Number = 0;

//an array with the images x - coordinate
var imagePos :Array = [115,-490,-1095,-1700,-2305,-2910];

var imgLength = imagePos.length-1;

//left button
button_left.buttonMode = true;
button_left.useHandCursor = true;
button_left.mouseChildren = true;
button_left.addEventListener(“mouseDown”,buttonLeftPress);
button_left.visible = true;

thumb1.buttonMode = true;
thumb1.useHandCursor = true;
thumb1.mouseChildren = true;
thumb1.addEventListener(“mouseDown”,thumb1Press);
thumb1.visible = true;

//right button
button_right.buttonMode = true;
button_right.useHandCursor = true;
button_right.mouseChildren = true;
button_right.addEventListener(“mouseDown”,buttonRightPress);
button_right.visible = true;

function leftStage(e:Event) {
button_left.visible = true;
button_right.visible = true;
}
function getPosition(e:MouseEvent) {
if (mouseX < stage.stageWidth/2) {
button_left.visible = true;
button_right.visible = false;
} else {
button_left.visible = false;
button_right.visible = true;
}

}
//left button press
function buttonLeftPress(e:MouseEvent) {
count–;
if (count <0) {
count = imgLength;
}
new Tween(mc,“x”,Regular.easeOut,mc.x,imagePos[count],1,true);
}
//right button press
function buttonRightPress(e:MouseEvent) {
count++;
if (count >imgLength) {
count = 0;
}

new Tween(mc,"x",Regular.easeOut,mc.x,imagePos[count],1,true);

}

//thumb 1
function thumb1Press(e:MouseEvent) {
new Tween(mc, “x”, Regular.easeOut, 0, 10, 1, true);
}