IE6 change cursor to pointer or hand on any element

IE6 only supports :hover on <a> elements. To change the cursor to a pointer or hand on hover of any non-anchor element, say a div:
In css

div {
cursor:hand;
cursor:pointer;
}

Do not add the pseudo state ‘:hover’, and it will work cross browser.