//Static Eyes - http://www.btinternet.com/~kurt.grigg/javascript <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head>
function watchTheMouse(y,x){ var osy = eyeballs.offsetTop; var osx = eyeballs.offsetLeft; var c1y = osy + 51; var c1x = osx + 51; var c2y = osy + 51; var c2x = osx + 154; var dy1 = y - c1y; var dx1 = x - c1x; var d1 = Math.sqrt(dy1*dy1 + dx1*dx1); var dy2 = y - c2y; var dx2 = x - c2x; var d2 = Math.sqrt(dy2*dy2 + dx2*dx2); var ay1 = y - c1y; var ax1 = x - c1x; var angle1 = Math.atan2(ay1,ax1)*180/Math.PI; var ay2 = y - c2y; var ax2 = x - c2x; var angle2 = Math.atan2(ay2,ax2)*180/Math.PI; var dv = 1.36; var onEyeBall1 = (d1 < 51)?d1/dv:37; var onEyeBall2 = (d2 < 51)?d2/dv:37; pupil1.top = c1y-13+onEyeBall1 * Math.sin(angle1*Math.PI/180)-osy+pix; pupil1.left = c1x-13+onEyeBall1 * Math.cos(angle1*Math.PI/180)-osx+pix; pupil2.top = c2y-13+onEyeBall2 * Math.sin(angle2*Math.PI/180)-osy+pix; pupil2.left = c2x-13+onEyeBall2 *Math.cos(angle2*Math.PI/180)-osx+pix; }
function mouse(e){ var y,x; if (!e) e = window.event; if (typeof e.pageY == 'number'){ y = e.pageY; x = e.pageX; } else{ var ref = document.documentElement||document.body; y = e.clientY + ref.scrollTop; x = e.clientX + ref.scrollLeft; } watchTheMouse(y,x); }