I'm struggling with centering a div that contains an image using imagemapster. When I remove the JS code, the div centers perfectly fine, indicating that the issue lies with the image mapster implementation.
It's a simple setup:
<div class="chartmap">
<img id="waterfall" align="middle" src="http://i1372.photobucket.com/albums/ag358/rls462/waterfall_zpsdd7cc432.png" usemap="#water" alt="Waterfall Methodology Map">
<map name="water">
<area ......>
...
</map>
</div>
You can see the demo here: http://jsfiddle.net/stamblerre/t6K8X/13/
Would appreciate any insights on how to solve this! Thank you!