Danke
es kommen trotzdem noch Fehler
<html>
<head>
<title>Verwiese</title>
<script language="JavaScript">
var inaktiv="hom";
function Wechsel(bildname,zustand)
{
if (inaktiv!=bildname)
{
if (zustand==1) document[bildname].src =bildname+"on.gif";
if (zustand==2) document[bildname].src =bildname+"out.gif";
if (zustand==3) {
document.images.[inaktiv].src =inaktiv+"out.gif";
document.images.[bildname].src = bildname+"click.gif";
inaktiv=bildname; }
}
return true; }
</script>
</head> // Muss hier auch .gif dabei sein(geht trotzdem nicht)
<body> vvv
<a href="home.htm" target="rechts" onMouseOver="Wechsel('homon',1);" onMouseOut="Wechsel('homout',2);" onClick="Wechsel('homclick',3)">
<img src="hom.gif" name="hom" border="0" alt="Home"></a>
</body>
</html>