I am having a problem with my image map for a site that I am building in HTML using Notepad. I have used image maps before without any problems, but now it isn't working and I do not know why. I assume it must be something simple that I am missing, but I cannot figure it out.
I first copied over the image map html code from another site of mine (which it works on) and edited the coordinates to match the new picture. For whatever reason, when I look at the site in Firefox, I cannot click the links in the image map.
Any help would be appreciated!
Lindsay
The Image:

My HTML Code:
CODE
<html>
<head>
<title>Welcome to...!</title>
<style type="text/css">
A:link
{ text-decoration: underline; color:#f04155; }
A:visited
{ text-decoration: underline; color:#f04155; }
A:active
{ text-decoration: underline; color:#f04155; }
A:hover
{ text-decoration: underline; color:#f04155;}
body
{
font-family: Arial;
color: #f04155;
font-weight: normal;
font-size: 12pt; }
</style>
</head>
<body>
<body bgcolor="#fffce3">
<body background="background.gif">
<div style="position: absolute; top:10; left:10; z-index:1>
<MAP NAME="menumap">
<AREA
HREF="index.html" ALT="Home" TITLE="Home" TARGET="frame1"
SHAPE=RECT COORDS="318,23,474,68">
<AREA
HREF="about.html" ALT="About" TITLE="About" TARGET="frame1"
SHAPE=RECT COORDS="480,23,636,68">
<AREA
HREF="gallery.html" ALT="Gallery" TITLE="Gallery" TARGET="frame1"
SHAPE=RECT COORDS="318,75,474,120">
<AREA
HREF="contact.html" ALT="Contact" TITLE="Contact" TARGET="frame1"
SHAPE=RECT COORDS="480,75,636,120">
</MAP>
<IMG SRC="menutest.gif"
ALT="Menu Map" BORDER=0
USEMAP="#menumap">
</div>
<div id=layer1 name="frame1" style="position:absolute; top:140; left:10; width:1000; height:450;
z-index:2; padding:5px; border: #f04155 3px solid; background-color:#fffce3; overflow:auto;">
Welcome to...!
<br><br>
TEXT HERE
</div>
</body>
</html>