The mouseover events in the API don't work the same as HTML mouseover events. To get the location of the mouse pointer, you will need to keep track of it some other way. Here's one way:
var mouse = {x: null, y: null};
document.onmousemove = function (e) {
mouse.x = e.pageX;
mouse.y = e.pageY;
}
Check the values in "mouse" when you need them.