ممنون از جوابتون ولی بازم درست نشد
کد:
<!DOCTYPE html>
<html>
<head>

<img id="image" src="image/sc.png"/></div>
<script>
$(document).mousemove(function(e){
   $("#image").stop().animate({left:e.pageX, top:e.pageY});
   	});
</script>
<style>
#image{
position:absolute;
height:200px;
}
</style>

</head>
</html>