一定時間ごと画像を入れ替えるには

<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
count = 1;
function swapImage()
{
document.images["dice"].src = count + ".gif";
count++;
if (count > 6) count = 1;
setTimeout("swapImage()",1000);
}
// --></script>
</head>
<body onLoad="swapImage()">
<img src="1.gif" name="dice">
</body>
</html>
・サンプルを実行
・サンプルをダウンロード
逆引きクイックリファレンス JavaScript 説明などは本書を参考にしてください。