count = 0;
function start_anim()
{
	animazione_ball();
	setTimeout("start_anim()", 5000);
}


function animazione_ball()
{
	count++;
	
	try
	{
		window.status = document.getElementByName('anim_1');
	}
	catch(e)
	{
		window.status = count + " | " + e.message;
	}
	
	
	// = (document.getElementById('anim_01').style.right +1) + "px";
	
	/*
	if(document.getElementById('anim_01').style.right > (width + document.getElementById('anim_01').style.width + 10))
		document.getElementById('anim_01').style.right = "-110px";
	*/
}
