how can i integrate the codes to make it loop infinte sir/ma'am? i'am a total newbiew, thanks in advance. :D
<script langauage="javascript">
col=255;
function fade ()
{ document.getElementById("fade").style.color="rgb("+ col + "," + col + "," + col + ")"; col-=5; if(col>0)
setTimeout('fade()',25);}
</script>