Help fixing my menu

Check out my menu: http://home.no.net/pnonline/index2.htm

Is there a way for me to make the blue thing follow the mouse on instead of just popping up. like when i drag the mouse from one link to another, it will slide?

read this:

http://www.kirupa.com/developer/mx/easing_mouseclick.htm

and this:

http://www.kirupaforum.com/forums/showthread.php?s=&threadid=29693

step by step=

first create an mc out of the blue bg thing with instance name ‘bluething’.

Add this actionscript to the mc.

onClipEvent(load){
_root.moveto=_x
}
onClipEvent(enterFrame){
diff=(_root.moveto-_x)/5
}

now on each of the buttons give the buttons an instance name of whatever you want. On each button add AS- (replace ‘instancename’ with the instance name of the button)

on(rollOver){
_root.moveto=_root.instancename._x
}

That should work. If it doesn’t, just reply back I’ll try and get u an fla.