var speed =500;
var control = 1;
function flash_menu()
{
	 if (control == 1)
	   {
		 document.getElementById("promo").style.color='#DC0024';
		 control=0;
	   }  
	 else
	   {
		document.getElementById("promo").style.color='#FFFFFF';
		 control=1;
	   }

	 setTimeout("flash_menu();",speed);
}

// -->
