// JavaScript Document
var s_speed=500;

<!-- Begin
function initArray() {
for (var i = 0; i < initArray.arguments.length; i++) {
this[i] = initArray.arguments[i];
}
this.length = initArray.arguments.length;
}
var colors = new initArray(
"#FF0000",
"#ffc000"
);
delay = .8; // seconds
link = 0;
vlink = 0;
function linkDance() {
link = (link+1)%colors.length;
vlink = (vlink+1)%colors.length;

 document.getElementById("the_s_p1").style.color = colors[link];
document.getElementById("the_s_p2").style.color = colors[link];
//document.getElementById("the_s_p3").style.color = colors[link];
//document.getElementById("the_s_p4").style.color = colors[link];
//document.getElementById("the_s_p5").style.color = colors[link];

setTimeout("linkDance()",delay*1000);
}
function linkDance1() {
link = (link+1)%colors.length;
vlink = (vlink+1)%colors.length;
new_task1.style.color = colors[link];
setTimeout("linkDance1()",delay*1000);
}



