BLANK_IMAGE = 'img/b.gif';

// Part 1 - Styles
var STYLE = {
    border:1,              // item's border width, pixels; zero means "none";
    shadow:2,              // item's shadow size, pixels; zero means "none"
    color:{
        border:"#666666",  // color of the item border, if any;
        shadow:"#DBD8D1",  // color of the item shadow, if any;
        bgON: "#6699ff",      // background color for the items;
        bgOVER: "#6699d0"	// background color for the item which is under mouse right now
                           // which is under mouse right now;
    },
    textClass:'styleFix13Gold',
    css:{
        ON:null,           // CSS class for items;
        OVER:"styleFix13Over"          // CSS class  for item which is under mouse;
    }
};

// Part 2 - Menu structure
var MENU_ITEMS = [
    {pos:[0,2], itemoff:[0,159], leveloff:[21,0], style:STYLE, size:[22,160]},
    {code:"Home", url:"index.htm"},
    {code:"Public", 
        sub:[
            {itemoff:[21,0]},
            {code:"Wa. Mandatory Class", "url":"class.htm"},
            {code:"Join Us", "url":"Join-WhatIs.htm"},
            { code: "Vessel Safety Checks", "url": "safety_checks.htm" },
            { code: "Alki Lighthouse Tours", "url": "alki-tours.htm" },
            { code: "Alki History", "url": "Alki_History.htm" }
        ]
    },
    {code:"Members", 
        sub:[
            {itemoff:[21,0]},
            { code: "Calendar", "url": "calendar.htm" },
            { code: "Alki Lighthouse",
                sub: [
                    { leveloff: [0, 159] },
                    { code: "Alki Lighthouse Tours", "url": "alki-tours.htm" },
                    { code: "Alki History", "url": "Alki_History.htm" },
                    { code: "Volunteer Signup", "url": "alki-signup.htm" }
                ]
            },
            { code: "News", "url":"news.htm"},
            { code: "New Members", "url": "members.html" },
            { code: "Links", "url": "links.htm" },
            { code: "Surface Operations", "url":"operations.htm"},
            { code: "Honor Guard", "url": "honor-guard.htm" },
            { code: "Uniform Links", "url": "uniforms.htm" }, 
            
            {code:"Member Experiences", 
                sub:[
                    {leveloff:[0, 159]},
                    { code: "Crew Training", "url": "crew-otw2.htm" },
                    { code: "MOM Patrol", "url": "mom-patrol.htm" },
                    { code: "Vessel Safety Checks", "url": "vsc-day.htm" },
                    { code: "Argosy Exercise", "url": "Argosy-exercse.htm" },
                    { code: "A Day on the Blake", "url":"Henry-Blake-towing.htm"}
                    
                ]},
            
            {code:"Training",
                sub:[
                    {leveloff:[0, 159]},
                    {code:"Crew Training", "url":"crewqual.htm"},
                    {code:"Sea Partners", "url":"SeaPartnersTraining.htm"},
                    {code:"Training Links", "url":"TrainingLinks.htm"}
                ]},
            {code:"Division Web Pages",
                sub:[
                    {leveloff:[0, 159]},
                    { code: "Home Page", "url": "http://www.division2d13.org/" },
                    { code: "Division 2 Links", "url": "http://www.division2d13.org/links.php" },
                    { code: "Reports", "url": "http://www.division2d13.org/reports.php" }
                ]},
            { code: "Flotilla 24 Blogs",
                sub: [
                    { leveloff: [0, 159] },
                    { code: "Public Affairs", "url": "http://flotilla24seattleelliottbay.blogspot.com/" },
                    { code: "Member Training", "url": "http://f24mt.blogspot.com/" }
                ]
            }
        ]
    },
    {code:"Photos", 
        sub:[
            {itemoff:[21,0]},
            {code:"F-24 at Work", "url":"pictures.html"},
            {code:"Download Pictures", "url":"DownloadPics.htm"}
        ]
    },
    {code:"Contact Us", url:"StaffOfficers.htm"}
    
];

