Thanks for checking it out!
I'll work on that - I saw a nice dragging script last-night that I plan to add.

If anyone is interested, the way I made the mac version smoother was to lower the framerate to 1 and then add this simple function:
Code:
function redraw() {
updateAfterEvent();
}
setInterval(redraw,21);
Psx