var ani=new AniObj('ani','arana','onmouseover,onmouseout');
ani.toggle=true;	//want toggle

//load image cells
ani.cell('../pix/arana0.jpg');
ani.cell('../pix/arana1.jpg');
ani.cell('../pix/arana2.jpg');
ani.cell('../pix/arana3.jpg');
ani.cell('../pix/arana4.jpg');
ani.cell('../pix/arana5.jpg');

//define animation loop
ani.frame(0,5000);
ani.frame(1,90);
ani.frame(2,500);
ani.frame(3,90);
ani.frame(4,500);
ani.frame(3,50);
ani.frame(2,200);
ani.frame(3,90);
ani.frame(4,700);
ani.frame(5,90);

//wrapper function req'd when init with window.onload
function setupAni(){ 
	ani.init();
}

//auto init
window.onload=setupAni;

