<!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ösung</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="description"
content="Übung JavaScript. Roll-over-Effekte: Prinziplö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>Übung JavaScript</h2>
<h3>Roll-over-Effekte: Prinziplösung</h3>
<p>Bitte führen Sie die Maus ü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>