
function startAnimation() {
	setInterval( doAnimation, 1000 );
}

function doAnimation() {
	var img = document.getElementById('flashNeu');
	img.style.visibility = (img.style.visibility == 'visible' ? 'hidden':'visible');
}
