[jQuery] scrolling menu items...

[jQuery] scrolling menu items...


Hello,
I've got this working but its "hard coded".
the menu on right hand side of this site: http://sugarsnap.previewurl.net
needs to scroll through each item as the user clicks the arrows.
This is working but only because I've put fixed heights to scroll -
shich is buggy cross browser.
the code:
$('a.down').click(function(event) {
$('#folioMenu').scrollTo('+=90px', 800);
return false;
});
I want to use next and prev but it didnt work:
$('#folioMenu').scrollTo($(".menuItem").next(), 800);
I've tried several variations but no luck.
any thoughts as to how this could be achieved?