<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
   <title>JavaScript: Roll-over-Effekte: Prinzipl&ouml;sung</title>

   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

   <meta name="description"
      content="&Uuml;bung JavaScript. Roll-over-Effekte: Prinzipl&ouml;sung">
   <meta name="keywords" content="HTML, JavaScript">
   <meta name="author" content="Roland Unger">

<script language="JavaScript" type="text/javascript">
<!--

function Animation(Bildname, Dateiname) {

   if (document.images) {
      document.images[Bildname].src = Dateiname }
}

// -->
</script>

</head>

<body>

<h2>&Uuml;bung JavaScript</h2>
<h3>Roll-over-Effekte: Prinzipl&ouml;sung</h3>

<p>Bitte f&uuml;hren Sie die Maus &uuml;ber unten stehendes Bild</p>

<p><a href="main_index_list.html" onmouseover="Animation('Bild0', 'html_downwrit.gif')"
   onmouseout="Animation('Bild0', 'html_btnwrite.gif')" target="_top">
<img src="html_btnwrite.gif" border="0" width="49" height="43" alt="Bild" name="Bild0" id="Bild0"></a></p>

</body>
</html>