I've found a lot of references to using <div> and absolute position but I've run into problems in the past with users that switch resolution or are running a higher DPI on thier system. what I have is a map of the solar system. i have placed it within an imagemap. what I would like to do is when i hover over the hotspot I can make the image change based on the hot spot. this will give the illusion that there is a Circle around the planet you are hovering over. I've tried this many different ways but have yet to succeed.
<map id="Sol_System" name="Sol_System">
<area coords="261, 157, 10" href="Nav_Mars.php" shape="circle" alt="Mars" Class="mars"/>
<area coords="345, 114, 10" href="Nav_Uranus.php" shape="circle" title="Uranus" />
<area coords="385, 191, 13" href="Nav_Neptune.php" shape="circle" title="Neptune" />
<area coords="238, 205, 5" href="Nav_Mercury.php" shape="circle" title="Mercury" />
<area coords="213, 225, 7" href="Nav_Venus.php" shape="circle" title="Venus" />
<area coords="171, 195, 10" href="Nav_Earth.php" shape="circle" title="Earth" />
<area coords="150, 135, 19" href="Nav_Jupiter" shape="circle" title="Jupiter" />
<area coords="133, 281, 19" href="Nav_Saturn.php" shape="circle" title="Saturn" />
<area coords="215, 188, 19" href="NavMap.php" shape="circle" title="Sun" />
</map>
<img src="Images/sol/Locations/L3.gif" usemap="#Sol_System" class="style37"/>
I thought that I could use the class to reference the img but it is referencing its own class. any suggestion?