

function change()

{

var e = document.getElementById("e");

re="rgb("+Math.round(Math.random()*256)+","+Math.round(Math.random()*256)+","+Math.round(Math.random()*256)+")"


e.style.color=re;

}

setInterval(change,1000);
