<!--


function Start(){
wspL=wspT=10;
celX=oBx=250,celY=oBy=0,Ani=0;
if(document.layers)
document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=DocMove;
}

function DocMove(wsp){
wspL=window.opera?wsp.clientX:document.all?event.x:wsp.pageX;
wspT=window.opera?wsp.clientY:document.all?event.y:wsp.pageY;
Cel();
}

function W(id){
var d=document;
d=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
if(!document.layers)d=d.style;
return d}

function Cel(){
 celX=wspL;
 celY=wspT;
 if(!Ani)RuchOb();
}

function RuchOb(){ 
 with(W('obiekt')){top=oBy;left=oBx}

 oBx=(12*oBx+celX-10)/13;
 oBy=(9*oBy+celY-60)/10;


 Ani=setTimeout("RuchOb()",20);

}
//-->

