//Определение положения курсора
$(document).ready(function(){
    $(document).mousemove(function(e){
        my_x = e.pageX;
        my_y = e.pageY;
    });
});
