Не заметил никаких проблем:
<a id="_a" href="www.xxx.ru">Тест ссылка</a>
<script>
function fRand(b) {
return b*Math.random();
}
aColor=new Array("green","yellow","red");
function fColor(){
document.getElementById('_a').style.backgroundColor = aColor[Math.round(fRand(2))];
}
setInterval("fColor()",1000);
</script>