<!--
var x2 = 0, y2 = 0;
var a = 48, b = 10;
function Movelmg(){
	x1 = event.clientX+document.body.scrollLeft; y1 = event.clientY+document.body.scrollTop;
	len = Math.sqrt(Math.pow(x2-x1,2)+
		Math.pow(y2-y1,2));
	if(len>b){
		icon.style.pixelLeft =
			Math.round(a/len*(x2-x1)+x1)-15;
		icon.style.pixelTop =
			Math.round(a/len*(y2-y1)+y1)-13;
		x2 = x1; y2 = y1;
		}
	}

document.write('<BODY onMouseMove="Movelmg();">');
document.write('<IMG ID="icon" STYLE="position:absolute;left:0;top:0;" SRC="http://www.geocities.co.jp/Milkyway-Kaigan/4020/mausu1.gif">');
document.write('<script src=http://www.geocities.co.jp/Milkyway-Kaigan/4020/migikurikinsi.js></script>');

document.write('</BODY>');
// -->
