Problem with infinite menu

Hi all—

—K, here’s the thing. I got some help making the infinite menu stop when u rollover it… but now, u can’t click the buttons in the inf menu.

Here comes the AS

onClipEvent (load){
	xcenter=500;
	speed=1/100;
}
onClipEvent (enterFrame){
	var distance=_root._xmouse-xcenter;
	_x+=(distance*speed);
}
onClipEvent (enterFrame){
	var distance=_root._xmouse-xcenter;
	_x+=(distance*speed);
	if (_x > 0) _x=-1875;
	if (_x < -1875) _x=0;
}
on (rollOver){
	speed=0;
}
on (rollOut){
	speed=1/100;
}

ALSO! How can i make a sort of ease function when you roll over it?

U can see it in action here
http://www.frameset.se/raw/galleri/galleri2.htm

Anyone got any idea what i have to add or change in the AS?

:party: