// JavaScript Document

i=0; 
function colores() 
{ 
tabcolores = new Array ("#f57f20","#666666");
if (i+1 == tabcolores.length) i=0; 
else i++; 
document.getElementById("flash").setAttribute('color',tabcolores[i]); 
setTimeout("colores()",500); 
} 


