Since you've hidden it, add spacing where it used to be by moving down the music player and your Interests/Details section. Then, just place a DIV where the contact table used to be. Inside that DIV, place your image with its proper image links. Here's a rough look of how that code should come out:
CODE
<div style="position:absolute; top:500px; left:50%; margin-left:-400px;">
<img name="newcontacttable" src="URL OF IMAGE" border="0" usemap="#newcontacttable" alt="" />
<map name="newcontacttable">
<area shape="rect" coords="COORDINATIONS" href="LINK" alt="DESCRIPTION" />
<area shape="rect" coords="COORDINATIONS" href="LINK" alt="DESCRIPTION" />
<area shape="rect" coords="COORDINATIONS" href="LINK" alt="DESCRIPTION" />
<area shape="rect" coords="COORDINATIONS" href="LINK" alt="DESCRIPTION" />
<area shape="rect" coords="COORDINATIONS" href="LINK" alt="DESCRIPTION" />
</map>
</div>
All you need to do is play around with the positioning of the DIV (top part of the code) and replace everything in all caps with what's needed. To learn about image mapping, check out
this tutorial.