<!-- Experiments with the mouse vegaseat 6/15/02 -->
<!-- onMouseover, href, bgcolor -->
<html>
<head>
<title>change the background color with onMouseover</title>
</head>
<body>
Move the cursor to the color you want ...
<br>
<br>
<a href="" onMouseover="document.bgColor='red'">Red</a>
<br>
<a href="" onMouseover="document.bgColor='orange'">Orange</a>
<br>
<a href="" onMouseover="document.bgColor='yellow'">Yellow</a>
<br>
<a href="" onMouseover="document.bgColor='green'">Green</a>
<br>
<a href="" onMouseover="document.bgColor='magenta'">Magenta</a>
<br>
<a href="" onMouseover="document.bgColor='purple'">Purple</a>
<br>
</body>
</html>