Custom Cursor

Ever wanted to change the default cursor, when you move the mouse over elements, eg, wouldn't it be nice if you could replace the usual hand cursor with something else when moving the mouse over links, or give tables a crosshair cursor instead of the usual
I-beam cursor? Now you can, the cursors you can use are :

auto, crosshair, help, pointer, move, text, wait,
e-resize, ne-resize, nw-resize, n-resize, s-resize, se-resize, sw-resize, w-resize

Example:

Move the mouse over the image and table to see the effect.

this image has a n-resize cursor this table has a
crosshair cursor

<HEAD>
<style type="text/css">
<!--
IMG {cursor : n-resize}
TABLE {cursor : crosshair}
-->
</style>
</HEAD>