<!--

pic = new Array(3);
for(var i = 0; i < 3; i++) {
	pic[i] = new Image();
	pic[i].src = "anim/a" + i + ".jpg";
	}
	
function animate()
{
	document.animation.src = pic[firstpic].src;
	firstpic = (firstpic + 1)%3;
	timeout_id = setTimeout("animate()", 2000);
}
var firstpic = 0;
var timeout_id = null;

animate();

//-->
