// JavaScript Document

i=0; 
z=0; 
x=0;
k=0;
function colores() 
{ 
tabcolores = new Array ("RED","#BBCBE5");
if (i+1 == tabcolores.length) i=0; 
else i++; 

document.getElementById("fre").setAttribute('color',tabcolores[i]); 

tabcolores4 = new Array ("RED","#BBCBE5");
if (k+1 == tabcolores4.length) k=0; 
else k++; 

document.getElementById("fre4").setAttribute('color',tabcolores4[k]); 

tabcolores3 = new Array ("#0033FF","#BBCBE5");
if (x+1 == tabcolores3.length) x=0; 
else x++; 

document.getElementById("fre3").setAttribute('color',tabcolores3[x]); 
//document.getElementById("fre5").setAttribute('color',tabcolores3[i]); 

tabcolores5 = new Array ("#0033FF","#BBCBE5");
if (z+1 == tabcolores5.length) z=0; 
else z++; 
document.getElementById("fre5").setAttribute('color',tabcolores5[z]); 

setTimeout("colores()",500); 
} 
/*
z=0; 
function colores2() 
{ 
tabcolores3 = new Array ("#6E8EA7","#fcfcfc");
if (z+1 == tabcolores3.length) j=0; 
else z++; 
document.getElementById("fre3").setAttribute('color',tabcolores3[j]); 

setTimeout("colores2()",500); 
} */

