Scrolling movie using mouse AS 2

Hi,
I am trying to use mouse to scroll my panaroma movie in my screen and this my AS:
_root.onEnterFrame = function(){
if(_root._xmouse>550){
imgBar.nextFrame();
imgBar.nextFrame();
}
if(_root._xmouse<50){
imgBar.prevFrame();
imgBar.prevFrame();
}
if(_root._ymouse== “up” ){
imgBar._y +=5();
}
if(_root._ymouse== “down” ){
imgBar._y -=5();
}
}
movie is moving to left and right but up and down does not work.
could any one please help me what’s wrong with my action scripts.
thanks,