// JavaScript Document

function change()
{
re="rgb("+Math.round(Math.random()*256)+","+Math.round(Math.random()*256)+","+Math.round(Math.random()*256)+")"
a.style.color=re;
}
setInterval(change,60);

