<html>
<head>
<title>roll</title>

<script language="JavaScript">
<!--
if (document.images) {
    // Kartinka nomer 1
    Pic1on = new Image();
    Pic1on.src = "pic1_yes.gif";
    Pic1off = new Image();
    Pic1off.src = "pic1_no.gif";
    // Kartinka nomer 2
    Pic2on = new Image();
    Pic2on.src = "pic2_yes.gif";
    Pic2off = new Image();
    Pic2off.src = "pic2_no.gif";
    // Kartinka nomer 3
    Pic3on = new Image();
    Pic3on.src = "pic3_yes.gif";
    Pic3off = new Image();
    Pic3off.src = "pic3_no.gif";
}
function picon(imja) {
    if (document.images) {
       document[imja].src = eval(imja + "on.src");
}
}
function picoff(imja) {
    if (document.images) {
       document[imja].src = eval(imja + "off.src");
}
}
//-->
</script>

</head>

<body>

<table align="center" cellpadding="0" cellspacing="0">
   <tr>
      <a href="link1.htm" onmouseover="picon('Pic1')" onmouseout="picoff('Pic1')">
         <td width="64">
            <img src="pic1_no.gif" name="Pic1" width="64" height="64">
         </td>
      </a>
      <a href="link2.htm" onmouseover="picon('Pic2')" onmouseout="picoff('Pic2')">
         <td width="64">
            <img src="pic2_no.gif" name="Pic2" width="64" height="64">
         </td>
      </a>
      <a href="link3.htm" onmouseover="picon('Pic3')" onmouseout="picoff('Pic3')">
         <td width="64">
            <img src="pic3_no.gif" name="Pic3" width="64" height="64">
         </td>
      </a>
   </tr>
</table>


</body>
</html>