I am dynamically changing the cursor type on a Google Map using the Javascript V3 API.
map.setOptions({draggableCursor:'crosshair'});
This is easy but I cannot figure out how to change back to the default draggable hand cursor.
Any suggestion of how I can reference the default cursor type. I have tried default, auto and hand to no avail. Below is how the hand looks before I change it.

It’s an Image: http://maps.gstatic.com/mapfiles/openhand_8_8.cur
I don’t know if it is documented somewhere, but setting the draggableCursor-option to
nullwill restore the default for me, it could be an better option.