Hello! I'm doing a website project for English class and am having trouble with my interactive menu. I've attached the menu pictures so you can hopefully help. Below is the HTML code. What I would like to do is be able to run this in Internet Explorer because that's what our school computers use. I know it has something to do with the onmouseover and onmouseout, but I'm not sure. Thanks!
<html>
<head>
</head>
<title>EVEREST EXPEDITIONS</title>
<body>
<a href="main.html"
onmouseover="document.mainlogo.src='mainlogomouseover.jpg'"
onmouseout="document.mainlogo.src='mainlogo.jpg'">
<img src="mainlogo.jpg" alt="Come Climb With Us!" name="mainlogo" /></a>
</br>
<img src="links.jpg" alt="Pick a link!" name="linkspicture" usemap="links" />
<map name="links" >
<area shape="rect" coords="0,0,152,70" alt="Pictures and Videos" href="media.html" onmouseover="document.linkspicture.src='medialink.jpg'" onmouseout="document.linkspicture.src='links.jpg'">
<area shape="rect" coords="152,0,263,70" alt="Join The Team" href="join.html" onmouseover="document.linkspicture.src='joinlink.jpg'" onmouseout="document.jinkspicture.src='links.jpg'">
<area shape="rect" coords="263,0,511,70" alt="Expeditions" href="expeditions.html" onmouseover="document.linkspicture.src='expeditionslink.jpg'" onmouseout="document.linkspicture.src='links.jpg'">
<area shape="rect" coords="511,0,720,70" alt="About Us" href="aboutus.html" onmouseover="document.linkspicture.src='aboutuslink.jpg'" onmouseout="document.linkspicture.src='links.jpg'">
</map>
</body>
</html>