Mit dem MSIE 4.x ist es überhaupt kein Problem die Farbe eines Links dynmisch zu verändern, aber geht das auch irgendwie mit Netscape 4.x?
<html>
<head>
<title>onMouseOver Link Color Changer MSIE</title>
<STYLE>
.on { font-size: 13; text-decoration: none; color:#FFFFFF; }
.off { font-size: 13; text-decoration: none; color: #FF0000; }
</STYLE>
</head>
<body bgcolor="#000000">
<font face="verdana"><a href="http://come.to/patzone" CLASS ="on"
onMouseOver = "className ='off';"
onMouseOut = "className = 'on';">Und schon verädert sich die Farbe...</a></font>
</center>
</body>
</html>