x=0;y=0;ecnt=30;
 
 
 

if (document.URL.match(/=yako/)=="=yako" ){
	alert("script unenable");
}else IEinit();
function IEinit(){
 
  wsCssx=new Array(ecnt/3);
  wsCssy=new Array(ecnt/3);
   for(i=0;i<ecnt/3;i++){
   document.write("<div id=ho"+i+" style='position:absolute;z-index:-1000'>š</div>");
   document.write("<div id=fg"+i+" style='position:absolute;z-index:-1000'>™</div>");
   document.write("<div id=hj"+i+" style='position:absolute;z-index:-1000'>™</div>");
  }
  
  
  
  
  setInterval("update()",10);
} 
function update(){
  time=new Date();
  a=time.getSeconds();
  b=time.getMinutes();
  c=time.getHours();
  for(i=0;i<ecnt;i++){
    wsCssx[ecnt-i]=wsCssx[ecnt-i-1];
    wsCssy[ecnt-i]=wsCssy[ecnt-i-1];
  } 
  wsCssx[0]=x;
  wsCssy[0]=y;
  for(i=0;i<10;i++){
    j=i+10;
    k=i+20;
    document.all["ho"+i].style.pixelTop=wsCssy[i]+Math.cos(-a*Math.PI/30+Math.PI)*i*20;
     document.all["ho"+i].style.pixelLeft=wsCssx[i]+Math.sin(-a*Math.PI/30+Math.PI)*i*20;
     document.all["fg"+i].style.pixelTop=wsCssy[j]+Math.cos(-b*Math.PI/30+Math.PI)*i*20;
     document.all["fg"+i].style.pixelLeft=wsCssx[j]+Math.sin(-b*Math.PI/30+Math.PI)*i*20;
     document.all["hj"+i].style.pixelTop=wsCssy[k]+Math.cos(-(c*Math.PI/6+b*Math.PI/360)+Math.PI)*15*i;
     document.all["hj"+i].style.pixelLeft=wsCssx[k]+Math.sin(-(c*Math.PI/6+b*Math.PI/360)+Math.PI)*15*i;
  } 
  
}
  

   
function mousemove(){
 x=event.x+document.body.scrollLeft; 
 y=event.y+document.body.scrollTop;
}




document.onmousemove=mousemove;