//index of web pages
var linking = [
["South&nbsp;Africa","sa.html","South&nbsp;Africa"],
["Tour&nbsp;d&acute;Afrique","tourdafrique.html","South&nbsp;Africa"],
["Bateleur&nbsp;Air&nbsp;Charter","bateleur.html","South&nbsp;Africa"],
["Four&nbsp;Rosmead&nbsp;Boutique&nbsp;Guesthouse","fourrosmead.html","South&nbsp;Africa"],
["The&nbsp;Andros&nbsp;Boutique&nbsp;Hotel","andros.html","South&nbsp;Africa"],
["Grootbos&nbsp;Private&nbsp;Nature&nbsp;Reserve","grootbos.html","South&nbsp;Africa"],
["Rosenhof&nbsp;Country&nbsp;House","rosenhof.html","South&nbsp;Africa"],
["Hog&nbsp;Hollow&nbsp;Country&nbsp;Lodge","hoghollow.html","South&nbsp;Africa"],
["Lion&nbsp;Roars&nbsp","lionroars.html","South&nbsp;Africa"],
["Amakhala&nbsp;Game&nbsp;Reserve","amakhala.html","South&nbsp;Africa"],
["The&nbsp;Thornybush&nbsp;Collection","thornybushcollection.html","South&nbsp;Africa"],
["Asia","asia.html","Asia"],
["Pangkor&nbsp;Laut&nbsp;Resort","pangkorlaut.html","Asia"],
["Tanjong&nbsp;Jara&nbsp;Resort","tanjongjara.html","Asia"],
["Cameron&nbsp;Highlands&nbsp;Resort","cameronhighlands.html","Asia"],
["Majestic&nbsp;Malacca&nbsp;","majesticmalacca.html","Asia"],
["Gaya&nbsp;Island&nbsp;Resort&nbsp","gayaisland.html","Asia"],
["The&nbsp;Ritz-Carlton&nbsp;Hotel","ritz-carlton.html","Asia"],
["JW&nbsp;Marriott&nbsp;Hotel","jwmarriott.html","Asia"],
["Spa&nbsp;Village&nbsp;Resort&nbsp;Tembok&nbsp;Bali","spavillageresorttembokbali.html","Asia"],
["The&nbsp;Green&nbsp;Leaf&nbsp;Niseko&nbsp;Village","greenleaf.html","Asia"]
];


//Menus on main web pages
function fullmenu(elmnt)
{
linking=linking.sort();
document.write("<table style='position:absolute; visibility:hidden' id='"+elmnt+"' border='0' cellspacing='1' cellpadding='1' width='100'>");
for (var i = 0; i < linking.length; i++)
{
if (elmnt == linking[i][2])
if (linking[i][0] != linking[i][2])
document.write("<tr><td class='menu'><a href='properties/"+linking[i][1]+"'onmouseover='window.status=&quot;"+linking[i][0]+"&quot;; return true' onmouseout='window.status=&quot; &quot;; return true'>&nbsp;"+linking[i][0]+"&nbsp;</a></td></tr>");
}
document.write("</table>");
}

//Menus on property web pages
function fullmenuP(elmnt)
{
linking=linking.sort();
document.write("<table style='position:absolute; visibility:hidden' id='"+elmnt+"' border='0' cellspacing='1' cellpadding='1' width='100'>");
for (var i = 0; i < linking.length; i++)
{
if (elmnt == linking[i][2])
if (linking[i][0] != linking[i][2])
document.write("<tr><td class='menu'><a href='"+linking[i][1]+"'onmouseover='window.status=&quot;"+linking[i][0]+"&quot;; return true' onmouseout='window.status=&quot; &quot;; return true'>&nbsp;"+linking[i][0]+"&nbsp;</a></td></tr>");
}
document.write("</table>");
}

//Shows menus
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible"
}

//Hides menus
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden"
}
