You can use CSS to get scrollbars on most things. It is the overflow style on an element. For example:
Code:
div {
overflow: scroll;
} Will force any div element to scroll any content that is not in its area. This applies vertically and horizontally. You can use this to scroll your list. The thing with this is, though, that I believe that you should force your element to have a width and height, since it will not know how big to make the area before it starts scrolling.
Hope this helps.
-Ted