QUOTE
I was wondering if somebody could image map
this image for me. I've tried doing it so many times but I can't get it right.
No.

I'll try to help you to do it yourself though.
QUOTE
Also, where do you put the image mapping in the document?
It doesn't matter.
Read here. Judging from the image, you want rectangles.
http://htmlhelp.com/reference/html40/special/map.htmlhttp://htmlhelp.com/reference/html40/special/area.htmlA rectangular selection takes 4 coordinates. You measure them like this (this can be done in almost any image program).
1. The first parameter is the distance from the
left edge of the image to the
left edge of the so far imagined selection rectangle.
2. The second parameter is the distance from the
top of the image to the
top of the selection rectangle.
3. The third parameter is the distance from the
left of the image to the
right of the selection rectangle.
4. The fourth parameter is the distance from the
top of the image to the
bottom of the selection triangle.
So you always measure from top-left of the image and the order is left-top-right-bottom of the selection rectangle. Look, I made a drawing for you.
Click to view attachmentThen you just list the parameters. I only did the "Show" link.
HTML
<map name="mymap">
<area href="show.html" alt="Show" coords="320,385,360,402">
</map>
'rect' is the default value for 'shape', so you can exclude that. Now you can do the rest yourself, right?