
var manager = new jsAnimManager();  

function animacursor() {
shroom = document.getElementById("cursor");  
  
manager.registerPosition("cursor");  
  
shroom.setPosition(-280,25);  
  
var anim = manager.createAnimObject("cursor");  
  

anim.add({property: Prop.wait, duration: 1500});  
anim.add({property: Prop.positionSemicircle(false),   
    to: new Pos(280,25), duration: 4500}); 
anim.add({property: Prop.position, to: new Pos(0,200),  
    duration: 4800});  
anim.add({property: Prop.position, to: new Pos(300,50),  
    duration: 3800});
anim.add({property: Prop.position, to: new Pos(-299,250),  
    duration: 3800});
t=setTimeout("animacursor()",11000);
}  
