<!--
 function img_Move(e) {

     document.layers['cursor1'].left=e.pageX
     document.layers['cursor1'].top=e.pageY
 }
 
 function img_Move5() {
     
     document.layers['cursor2'].left=document.layers['cursor1'].left
     document.layers['cursor2'].top=document.layers['cursor1'].top
     setTimeout("img_Move3()",250)
 }

 function img_Move4() {
     
     document.layers['cursor3'].left=document.layers['cursor1'].left
     document.layers['cursor3'].top=document.layers['cursor1'].top
     setTimeout("img_Move4()",600)
 }

 function img_move1(){
     
     document.all["cursor1"].style.left=event.clientX+1;
     document.all["cursor1"].style.top=document.body.scrollTop+event.clientY+1;
 }

 

 function img_move2(){

     if (document.all) {
     
	document.all['cursor2'].style.left=document.all["cursor1"].style.left;
	document.all['cursor2'].style.top=document.all["cursor1"].style.top;
	setTimeout("img_move2()",100);
     }
     	 
 }

 function img_move3(){

     if (document.all) {
     
	document.all['cursor3'].style.left=document.all["cursor1"].style.left;
	document.all['cursor3'].style.top=document.all["cursor1"].style.top;
	setTimeout("img_move3()",200);
     }
     	 
 }

 function img_follow() {

     if (document.all) {
	img_move1();
     }
 }

 
 function img_loaded() {

     if (document.layers) {
          window.captureEvents(event.mousemove)
          window.onmousemove=img_Move
	  Window.onload=img_Move5
	  Window.onload=img_Move4
     }
 } 
//-->
