
function bl() { 
	var se=["red","black"];

	var co=document.getElementById("flasheff");

	if(co.style.color == se[0]) co.style.color = se[1];
	else co.style.color = se[0];

	timer=setTimeout("bl()",200);
}

bl();
