// JavaScript Document

i=0; 
function colores() 
{ 
tabcolores = new Array ("RED","#BBCBE5");
if (i+1 == tabcolores.length) i=0; 
else i++; 
document.getElementById("fre").setAttribute('color',tabcolores[i]); 
document.getElementById("fre2").setAttribute('color',tabcolores[i]); 

setTimeout("colores()",500); 
} 

