var x=7
var y=19
if (document.layers)
  {
	document.captureEvents(Event.MOUSEMOVE);
  }
document.onmousemove = handlerMM;

function handlerMM(e) 
	{
	y = (document.layers) ? e.pageY : document.body.scrollTop+event.clientY;
	if (y > 200) y=200
  }
	
function navi() {
	if (document.all) {
    var thisspan = eval("span.style")
    thisspan.posLeft=x
		thisspan.posTop=y-8
	  }
	else if (document.layers) {
    var thisspan = eval("document.span")
    thisspan.left = x
		thisspan.top = y-8
	  }
	var timer=setTimeout("navi()",25)
  }
	
function move(content, navigation) {
  parent.main.location.href=content;
  parent.navi.location.href=navigation;
	}
