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:"navy",      // background color for the items;
		bgOVER:"#0099ff"	// 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:"Boating Classes", "url":"class.htm"},
            {code:"Wa. Mandatory Class", "url":"class.htm"},
            {code:"Join Us", "url":"join-whatis.htm"},
            {code:"Meeting Information", "url":"meetings.htm"},
            {code:"Vessel Safety Checks", "url":"safety_checks.htm"}
        ]
    },
    {code:"Members", 
        sub:[
            {itemoff:[21,0]},
            {code:"Calendar", "url":"calendar.htm"},
            {code:"News", "url":"news.htm"},
            {code:"Links", "url":"links.htm"},
            {code:"Fellowship", "url":"fellowship.htm"},
            {code:"Augmentation", "url":"augmentation.htm"},
            {code:"Surface Operations", "url":"operations.htm"},
            {code:"Meeting Information", "url":"meetings.htm"},
            {code:"Uniforms", 
                sub:[
                    {leveloff:[0, 159]},
                    {code:"Uniform Links", "url":"uniforms.htm"},
                    {code:"Operational ODU", "url":"uniform_ODU.htm"},
                    {code:"Men's Service Dress Blue", "url":"uniform_MSDB.htm"},
                    {code:"Women's Service Dress Blue", "url":"uniform_WSDB.htm"},
                    {code:"Tropical Blue Long", "url":"uniform_TBL.htm"},
                    {code:"Working Blue", "url":"uniform_WB.htm"}
                ]},
            
            {code:"Member Experiences", 
                sub:[
                    {leveloff:[0, 159]},
                    {code:"Towing with the Blake", "url":"Henry-Blake-towing.htm"},
                    {code:"C-School and a C-130", "url":"C-130.htm"},
                    {code:"A Day on the Henry Blake", "url":"Henry-Blake.htm"}
                ]},
            
            {code:"Training",
                sub:[
                    {leveloff:[0, 159]},
                    {code:"Crew Training", "url":"training.htm"},
                    {code:"Sea Partners", "url":"SeaPartnersTraining.htm"},
                    {code:"Training Links", "url":"TrainingLinks.htm"}
                ]}
        ]
    },
    {code:"Photos", 
        sub:[
            {itemoff:[21,0]},
            {code:"Operational Facilities", "url":"opfacs.htm"},
            {code:"Change of Watch", "url":"cow-2006.htm"},
            {code:"Miscellaneous", "url":"news.htm"},
            {code:"Flotilla Archives", "url":"Gallery.htm"}
        ]
    },
    {code:"Contact Us", url:"contact.htm"}
    
];
