マウスが乗ったら画像を入れ替えるには

<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
function swapImage(btnObj,sURL)
{
btnObj.src = sURL;
}
// --></script>
</head>
<body>
<img src="button1.gif" onMouseover="swapImage(this,'button2.gif')" onMouseout="swapImage(this,'button1.gif')">
</body>
</html>
・サンプルを実行
・サンプルをダウンロード
逆引きクイックリファレンス JavaScript 説明などは本書を参考にしてください。