// 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
// 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",
    "The Boat||info/waywardwind.htm||All",
    "The Fishing||info/fishing.htm||All",
    "The Skipper||info/about.htm||All",
    "Bookings||info/booking.htm||All",
    "Gallery||info/gallery.htm||All",
    "Catch Reports||info/catch.htm||All",
    "Grenada||info/grenada.htm||All",
    "Links||info/links.htm||All",
    "Contact||info/contact.htm||All",
    "&copy; Copyright||info/copyright.htm||All",
    "Help||sys_help/help.htm||SiteManager",
    "Counters||manager/counters.htm||SiteManager",
    "Login||sys_admin/sys_login.htm||RegisteredUser-L",
//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",
   	"Angler",
    "Editor",
    "SiteManager",
    "Webmaster",
//SECURITY_LEVELS-END
//
//
	""
	]