massive_length=2;/*устанавливаешь длинну массива, т.е. сколько цветов будет*/
colors_= new Array(massive_length);
colors_[0] = "#4D83C9";
colors_[1] = "red";
var next_ = 0;
function Changehead()
{
headcolor= colors_[next_];

document.getElementById("head1").style.color=headcolor;
next_++;
if(next_>massive_length-1) next_=0;
window.setTimeout("Changehead()",300); /*спустя 1 секунду*/
}

