Simply use the cursor property on hover.
a:hover {
cursor: pointer;
}
You can see the available cursor values here.
Example http://jsfiddle.net/8nyEE/
link with hand cursor
link with default cursor
a {color: blue;}
.hand:hover {
cursor: pointer;
}
.nohand:hover {
cursor: default;
}