i=3
function text_color_change1()
{
c = i.toString(16)
if( 2%c == 0 ) {d=16-c;}
 else {d=c;}
document.all.CCStr1.style.color = "#00" + d + d +"00";
i ++;
timerID = setTimeout("text_color_change1()" , 1000)
if(i > 15) clearTimeout(timerID)
}

i=3
function text_color_change2()
{
c = i.toString(16)
if( 2%c == 0 ) {d=12-c;}
 else {d=c;}
document.all.CCStr2.style.color = "#00" + d + d +"00";
i ++;
timerID = setTimeout("text_color_change2()" , 1000)
if(i > 11) clearTimeout(timerID)
}

i=3
function text_color_change3()
{
c = i.toString(16)
if( 2%c == 0 ) {d=9-c;}
 else {d=c;}
document.all.CCStr3.style.color = "#00" + d + d +"00";
i ++;
timerID = setTimeout("text_color_change3()" , 1000)
if(i > 8) clearTimeout(timerID)
}