// JavaScript Document

setInterval('flashText()',1200);

function flashText()
{
	var flashingText = document.getElementById('flashingText');
	if(flashingText!=null)
	{
		var currentColor = flashingText.style.color;
		if(currentColor == "rgb(204, 204, 204)" || currentColor == "#cccccc")
		{
			
			flashingText.style.color = "#990000";
		}
		else
		{
			flashingText.style.color = "#cccccc";
		}
	}
}		

