function fwLoadMenus() {

if (window.fw_menu_11) return;

noOfMenuItems = 7

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] = "Treatments"
mitemLocation[1] = "location='../treatments.htm'"

mitemLabel[2] = "A Day at RHA"
mitemLocation[2] = "location='../dayrha.htm'"

mitemLabel[3] = "Cottages"
mitemLocation[3] = "location='../cottages.htm'"

mitemLabel[4] = "Route Map"
mitemLocation[4] = "location='../routemap.htm'"

mitemLabel[5] = "Tariff"
mitemLocation[5] = "location='../rhatariff.htm'"

mitemLabel[6] = "Online Reservation"
mitemLocation[6] = "location='../onlinereser.htm'"

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 = 6

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] = "House Boats"
mitemLocation[1] = "location='../houseboats.htm'"

mitemLabel[2] = "Cottages"
mitemLocation[2] = "location='../islandscottage.htm'"

mitemLabel[3] = "Route Map"
mitemLocation[3] = "location='../islandsroutemap.htm'"

mitemLabel[4] = "Tariff"
mitemLocation[4] = "location='../islandtariff.htm'"

mitemLabel[5] = "Online Reservation"
mitemLocation[5] = "location='../reservisland.htm'"

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();
}