// Menu data array - EDIT AT EXTREME PERIL !!!!!!
// may be automatically re-written to configure the menu items
var Menu_Data = [
// format is NAME||LINK||SECURITY||GROUP||TIP
// Security levels - ass below, eg. All, Member, Manager, Webmaster
// These can further be -L, for items that are displayed
// prior to login
//MENU_DATA-BEGIN
    "Home||index.htm||All||||",
    "Brook Farm||info/brook_farm.htm||All||||",
    "B&B Rooms||info/rooms.htm||All||||",
    "Location||info/location.htm||All||||",
    "Tariff||info/tariff.htm||All||||",
    "Organic Breakfast||info/Breakfast.htm||All||||",
    "Guest Comments||info/guest_comments.htm||All||||",
    "Holiday Cottage||info/holiday_cottage.htm||All||||Opened July 2009",
    "Woodchurch Village||info/woodchurch.htm||All||||",
    "Tenterden||info/tenterden.htm||All||||",
    "Rye||info/rye.htm||All||||",
    "Kent||info/kent.htm||All||||",
    "Contact Details||info/contact.htm||All||||",
    "FAQ||info/faq.htm||All||||",
    "Help||sys_help/help.htm||SiteManager||||",
    "Login||sys_admin/sys_login.htm||Editor-L||||",
    "Links||info/links.htm||All||||",
    "&copy; Copyright||info/copyright.htm||All||||",
//MENU_DATA-END//
	""
	]//
// security levels array - EDIT AT EXTREME PERIL !!!!!!
// may be automatically re-written to configure the security levels
var Security_Levels = [
// format is NAME||LINK||SECURITY
// eg All, Member, Manager, Webmaster
//SECURITY_LEVELS-BEGIN
    "All",
   	"RegisteredUser",
   	"Guest",
    "Contractor",
    "Staff",
    "Editor",
    "SiteManager",
    "Webmaster",
//SECURITY_LEVELS-END
//
//
	""
	]
//
//
var Alt_Menu_Data = [
//ALT_DATA-BEGIN
    "Home||index.htm||All||||",
    "Brook Farm||info/brook_farm.htm||All||||",
    "Location||info/location.htm||All||||",
    "Tariff||info/tariff.htm||All||||",
    "Guest Comments||info/guest_comments.htm||All||||",
    "Holiday Cottage||info/holiday_cottage.htm||All||||Opening June 2009",
    "Woodchurch Village||info/woodchurch.htm||All||||",
    "Tenterden||info/tenterden.htm||All||||",
    "Rye||info/rye.htm||All||||",
    "Kent||info/kent.htm||All||||",
    "Contact Details||info/contact.htm||All||||",
    "FAQ||info/faq.htm||All||||",
    "Help||sys_help/help.htm||SiteManager||||",
    "Login||sys_admin/sys_login.htm||Editor-L||||",
    "Links||info/links.htm||All||||",
    "&copy; Copyright||info/copyright.htm||All||||",
//ALT_DATA-END
//
	""
	]
// This bit swaps the menu depending on the domain
if (document.URL.indexOf('barn')>=0){
	Menu_Data = Alt_Menu_Data;
	}
