Embeded swf not functioning correctly

When I embed a swf it does not function the way it does when not embeded. I don’t no what the problem could be. Here are the links and source code below. The scroll bar on the bottom does not function and the 360 click and drag of the photos does not work.
http://www.dev.wisc-online.com/prototypes/Tour/mainholder.swf - doesn not work right.
http://www.dev.wisc-online.com/prototypes/Tour/fvtctour3.swf - it works when not embeded.


//******************* Scroll Functions for Large Images *******************************
var maxSpeed:uint=50;
function startScroll(event:Event):void {
 event.currentTarget.addEventListener(Event.ENTER_FRAME, doScroll);
}
var mousePressed:Boolean = false;
stage.addEventListener(MouseEvent.MOUSE_DOWN, mDown);
stage.addEventListener(MouseEvent.MOUSE_UP, mUp);
function mDown(e:MouseEvent):void{mousePressed = true;}
function mUp(e:MouseEvent):void{mousePressed = false;}
function doScroll(event:Event):void {
    if(mousePressed)
    {
    if (mouseX>0&&mouseX<stage.stageWidth&&mouseY>30&&mouseY<530) {
        if (mouseX<stage.stageWidth/2) {
            imageArea.x = imageArea.x + (maxSpeed/((100*mouseX)/(stage.stageWidth/2)));
        } else if (mouseX>stage.stageWidth/2) {
            imageArea.x = imageArea.x + -1 * (maxSpeed/((100*(stage.stageWidth-mouseX))/(stage.stageWidth/2)));
        }
        if (imageArea.x<=0-(imageArea.width/2)) {
            imageArea.x=0;
        } else if (imageArea.x > 0) {
            imageArea.x = 0-(imageArea.width/2);
        }
    }
    var hiPt:uint=stage.stageHeight/2;
    var Hdiff:int=mouseY-hiPt;
    var hiPerc:Number=Hdiff/hiPt;
    imageArea.y = 0-(mouseY)*(imageArea.height/600 -1);
    }
}
function stopScroll(event:Event):void {
 event.currentTarget.removeEventListener(Event.ENTER_FRAME, doScroll);
}


//++++++++++++++++++++ This code Controls The Scrolling Thumbnails +++++++++++++++++++++++++++
var minScroll:Number=0;
var maxScroll:Number=track.width-handler.width;
var draging:Boolean=false;
var bounds:Rectangle=new Rectangle(handler.x,handler.y,maxScroll,0);
handler.buttonMode=true;
handler.addEventListener(MouseEvent.MOUSE_DOWN,beginDrag);
function beginDrag(event:MouseEvent):void {
 handler.startDrag(false,bounds);
 draging=true;
 handler.addEventListener(Event.ENTER_FRAME,checkingProgress);
 stage.addEventListener(MouseEvent.MOUSE_UP,endDrag);
}
function endDrag(event:MouseEvent):void {
 handler.stopDrag();
 draging=false;
}
function checkingProgress(event:Event):void {
 var procent:Number=handler.x/maxScroll;
 if (draging) {
  Tweener.addTween(imagescolling,{x:(-procent*(imagescolling.width - 790)),time:2});
 }
}