Hi,If you've not already solved this you can do something like this on your onmousedown event.function changeCursor(cursors) {
switch (cursors) {
case "pan":
dojo.byId("Map_Panel_layers").style.cursor = "url('images/cursors/hndopen.cur'),crosshair";
down = dojo.connect(map, "onMouseDown", function(evt) {
dojo.byId("Map_Panel_layers").style.cursor = "url('images/cursors/hndclosed.cur'),crosshair";
});
dojo.connect(map, "onMouseUp", function(evt) {
dojo.byId("Map_Panel_layers").style.cursor = "url('images/cursors/hndopen.cur'),crosshair";
});
//dojo.byId("map_zoom_slider").style.cursor = 'default';
//dojo.byId("map_infowindow").style.cursor = 'default';
//dojo.byId("navToolbar").style.cursor = 'default';
break;
}
}