For VE Version 6
This trick is how to change the cursor to crosshair.
document.getElementById("xxx").childNodes[0].style.cursor = "crosshair";
Where xxx is your map id. To change back use.
document.getElementById("xxx").childNodes[0].style.cursor = "";