function fwLoadMenus() {

if (window.fw_menu_11) return;

noOfMenuItems = 6

var mitemLabel = new Array(noOfMenuItems);
var mitemLocation = new Array(noOfMenuItems);

menuLabel           = "root"
menuWidth           = 126
menuHeight          = 18
menuFont            = "Verdana, Arial, Helvetica, sans-serif"
menuFontSize        = 11
menuFontColor       = "#ffffff"
menuFontHlightColor = "#003060"
menuBgColor         = "#007000"
menuBgHlightColor   = "#F8FCE8"

mitemLabel[0] = "Facilities"
mitemLocation[0] = "location='facilities.htm'"

mitemLabel[1] = "Traitements"
mitemLocation[1] = "location='treatments.htm'"

mitemLabel[2] = "Une Journee a RHA"
mitemLocation[2] = "location='dayrha.htm'"

mitemLabel[3] = "Bungalows"
mitemLocation[3] = "location='cottages.htm'"

mitemLabel[4] = "Carte routier"
mitemLocation[4] = "location='routemap.htm'"

mitemLabel[5] = "Online Reservation"
mitemLocation[5] = "location='http://dotserver.net/ohrm/rajah/login.php3'"

window.fw_menu_11 = new Menu(menuLabel,menuWidth,menuHeight,menuFont,menuFontSize,menuFontColor,menuFontHlightColor,menuBgColor,menuBgHlightColor);
for (var i=0;i<noOfMenuItems;i++)
{
	fw_menu_11.addMenuItem(mitemLabel[i],mitemLocation[i]);
}
fw_menu_11.hideOnMouseOut=true;


noOfMenuItems = 5

menuLabel           = "root"
menuWidth           = 126
menuHeight          = 18
menuFont            = "Verdana, Arial, Helvetica, sans-serif"
menuFontSize        = 11
menuFontColor       = "#ffffff"
menuFontHlightColor = "#003060"
menuBgColor         = "#007000"
menuBgHlightColor   = "#F8FCE8"

mitemLabel[0] = "Facilities"
mitemLocation[0] = "location='islandsfacilities.htm'"

mitemLabel[1] = "Peniches"
mitemLocation[1] = "location='houseboats.htm'"

mitemLabel[2] = "Bungalows"
mitemLocation[2] = "location='islandscottage.htm'"

mitemLabel[3] = "Carte Routier"
mitemLocation[3] = "location='islandsroutemap.htm'"

mitemLabel[4] = "Online Reservation"
mitemLocation[4] = "location='http://dotserver.net/ohrm/rajahisland/login.php3'"

window.fw_menu_12 = new Menu(menuLabel,menuWidth,menuHeight,menuFont,menuFontSize,menuFontColor,menuFontHlightColor,menuBgColor,menuBgHlightColor);
for (var i=0;i<noOfMenuItems;i++)
{
	fw_menu_12.addMenuItem(mitemLabel[i],mitemLocation[i]);
}
fw_menu_12.hideOnMouseOut=true;

fw_menu_12.writeMenus();
}