﻿$(document).ready(function() {
    /*$('#body').mouseout(function() {
        $('#mycursor').hide();
        return false;
    });*/
    $('#body').mouseenter(function() {
        $('#mycursor').show();
        return false;
    });
    $('#body').mousemove(function(e) {
        $('#mycursor').css('left', e.clientX - 20).css('top', e.clientY + 7);
    });
});
