// Menu data array - EDIT AT EXTREME PERIL !!!!!!
// may be automatically re-written to configure the menu items
var Menu_Data = [
// format is NAME||PAGE||AUTHORITY||GROUP||TIP
// Security levels - ass below, eg. All, Member, Manager, Webmaster
// These can further be -L, for items that are displayed prior to login
// Then -X, inverts the security and -L tests
//MENU_DATA-BEGIN
    "Home||index.htm||All||||Back to the home page of jlunderwater.co.uk",
    "Picture Library||piclib/picture_library.htm||All||||A fully indexed and searchable library of thousands of photographs, both above and below the water",
    "Search||piclib/search.htm||All||||Search the picture library using the internal search engine or Google",
    "Wreck Tours||info/books/wreck_tours.htm||All||||The acclaimed DIVER Magazine series of wreck dives",
    "About||info/about.htm||All||||About John Liddiard, underwater photographer and diving journalist",
    "Education||education/resources.htm||All||||Resources for students researching educational projects",
    "Help||sys_help/help.htm||SiteManager||||Help about using this site",
    "User Registration||sys_admin/user_registration.htm||RegisteredUser-L-X||||User registration is required to enable the more advanced facilities of this web site, such as creating a shortlist of photographs and ordering online.",
    "Login||sys_admin/sys_login.htm||RegisteredUser-L||||Login to use the more advanced facilities of this web site",
    "Reports||admin/reports/reports.htm||SiteManager||||Login to use the more advanced facilities of this web site",
    "Links||links/index.htm||All||||Pages of links to other web sites",
    "Contact||info/contact.htm||All||||How to Contact John Liddiard",
    "&copy; Copyright||info/copyright.htm||All||||The text, photographs and graphic designs of this web site are copyright John Liddiard",
//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",
   	"PictureResearcher",
   	"Editor",
   	"DiverMagazine",
   	"DiverEditor",
   	"AssistantManager",
    "SiteManager",
    "Webmaster",
//SECURITY_LEVELS-END
//
//
	""
	]
//
//
var Alt_Menu_Data = [
//ALT_DATA-BEGIN
    "Home||info/books/wreck_tours.htm||All||||Back to the home page of wrecktour.co.uk",
    "About||info/about.htm||All||||About John Liddiard, the author",
    "Help||sys_help/help.htm||SiteManager||||Help about using this site",
    "Links||links/index.htm||All||||Pages of links to other web sites",
    "Contact||info/contact.htm||All||||How to Contact John Liddiard",
    "&copy; Copyright||info/copyright.htm||All||||The text, photographs and graphic designs of this web site are copyright John Liddiard",
//ALT_DATA-END
//
	""
	]
// This bit swaps the menu depending on the domain
if (document.URL.indexOf('wrecktour')>=0){
	Menu_Data = Alt_Menu_Data;
	}
