function tm(menuID, buttonID) {
if (!document.getElementById) return;

var m = document.getElementById(menuID).style;
m.display = (m.display == 'block') ? 'none' : 'block';

var b = document.getElementById(buttonID);
b.innerHTML = (b.innerHTML == 'Related [+]') ? 'Related [x]' : 'Related [+]';
}

var site =
'<map name="site">'+
'<area shape="rect" coords="0,2,129,31" href="http://www.sherakhan.com/the_yacht.html">'+
'<area shape="rect" coords="130,2,259,32" href="http://www.sherakhan.com/destinations.html">'+
'<area shape="rect" coords="260,2,390,32" href="http://www.sherakhan.com/gallery.html">'+
'<area shape="rect" coords="392,0,521,31" href="http://www.sherakhan.com/your_safety.html">'+
'<area shape="rect" coords="522,4,653,31" href="http://www.sherakhan.com/contact.html">'+
'<area shape="rect" coords="653,0,783,31" href="http://www.sherakhan.com/deckplan.html">'+
'<area shape="rect" coords="561,401,729,449" href="http://www.sherakhan.com/gallery.html">'+
'<area shape="rect" coords="565,529,725,578" href="http://www.sherakhan.com/crew_info.html">'+
'<area shape="rect" coords="336,587,461,650" href="http://www.sherakhan.com/sherakhan_homepage.html">'+
'</map>';
document.write(site);