Why won't these images change when i put my mouse over them? Here's the code:
<BASE HREF="
http://www.geocities.com/javascriptgames/">
<HTML>
<HEAD>
</HEAD>
<BODY onload="go()">
<script>
function draw(choice)
{
document.images[choice].src="gopher.gif"
}
function go()
{
for (var i=0; i<100; i++)
{
document.write('

')
}
}
</script>
</BODY>
</HTML>