How can I make the cursor a hand when a user hovers over a list item?

I've got a list, and I have a click handler for its items:
<ul>
  <li>foo</li>
  <li>goo</li>
</ul>
How can I change the mouse pointer into a hand pointer (like when hovering over a button)? Right now the pointer turns into a text selection pointer when I hover over the list items.

Answer:

Edit: In light of the passage of time, as people have mentioned, you can now safely just use:
li { cursor: pointer; }
Original Answer:
Actually to expand on the previous answers, different browsers use different names.
li { cursor: pointer; cursor: hand; }
Will cover you in all cases.

http://stackoverflow.com/questions/3087975/how-can-i-make-the-cursor-a-hand-when-a-user-hovers-over-a-list-item