You can make an image map very quickly by following the steps below. This protocol assumes you have access to a web servable image, and a text editor for the html page you want to make the image map for.
What you need:
Client Side Image Map HTML Template (copy the text below and paste it into your html page, then customize it):
<!-- You can put comments within brackets like this --> <img src="http://www.yourserver.com/yourdirectory_or_whatever/yourimage.gif" border=0 usemap="#mymap"> <!-- add or delete the elements below with your own shapes (i.e. rectangles, circles, etc.) --> <!-- replace the coordinates and URLs below with your own values --> <map name="mymap"> <!-- sample rectangle1 --> <area shape=rect coords="73,103,131,145" href="http://www.whatever_you_want.com/to_point/to1.html"> <!-- sample rectangle2 --> <area shape=rect coords="35,170,94,211" href="http://www.whatever_you_want.com/to_point/to2.html"> <!-- sample rectangle3 --> <area shape=rect coords="109,171,168,212" href="http://www.whatever_you_want.com/to_point/to3.html"> <!-- everywhere else --> <area shape=default href="http://www.whatever_you_want.com/to_point/default.html"> </map>