stevesh, thanks for your reply!
I should have been more specific: the image in question is in the left column (the one with 4 squares). I have the image map set up for 4 sections of the image, but the "hand" doesn't appear (hence the links don't work).
The image is placed in the in a blank box (from the blank box mod); not sure if this is affecting the map's behaviour? Here is the code:
Code:
<?php
/**
* blank sidebox - allows a blank sidebox to be added to your site
*/
$content = '';
$content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
// Replace the text and HTML tags between the apostophes.
// Use as many or as few lines using this model as you need for your custom content.
$content .= '<p></p>';
$content .= '<img src="includes/templates/MDS/images/sidebox-nav.gif" alt="" width="200" height="200" border="0" usemap="#Map" /><map name="Map" id="Map">
<area shape="rect" coords="0,-2,96,96" href="http://www.mishutkadesign.com//index.php?main_page=page&id=19" />
<area shape="rect" coords="106,1,201,96" href="http://www.mishutkadesign.com//index.php?main_page=page&id=20" />
<area shape="rect" coords="0,105,96,199" href="http://www.mishutkadesign.com//index.php?main_page=page&id=21" />
<area shape="rect" coords="104,104,201,199" href="http://www.mishutkadesign.com//index.php?main_page=page&id=22" />
</map>';
$content .= '</div>';
?>