// Part 1 - Styles
var STYLE = {
    border:0,              // item's border width, pixels; zero means "none";
    shadow:0, 				// item's shadow size, pixels; zero means "none"
    color:{
        border:"#FFFFFF",  // color of the item border, if any;
        shadow:"#FFFFFF",  // color of the item shadow, if any;
        bgON:"#C2000E",      // background color for the items;
        bgOVER:"#C2000E"   // background color for the item
                           // which is under mouse right now;
    },
    css:{
        ON:'menuON',           // CSS class for items;
        OVER:'menuOVER'          // CSS class  for item which is under mouse;
    }
};

// Part 2 - Menu structure
var MENU_ITEMS = [
    {pos:"relative", itemoff:[0,75], leveloff:[36,8], style:STYLE, size:[22,100], imagePrefix:'images/', blankImage:'../images/blank.gif'},
    {code:'', url:"./aboutus/about.php", size:[36,75], image:[ 'about.gif', 'about-over.gif' ], imgsize:[36,75],
        sub:[
            {"itemoff":[22,0], size:[22,150], image:null},
            {code:"History &raquo;", "url":"./aboutus/history.php"},
            {code:"Board Members &raquo;", "url":"./aboutus/boardmembers.php"},
            {code:"Management &raquo;", "url":"./aboutus/management.php"}
        ]
    },
    {code:'', url:"./services/services.php", size:[36,107], image:[ 'services.gif', 'services-over.gif' ], imgsize:[36,107],
        sub:[
            {"itemoff":[22,0], size:[22,150], leveloff:[36,10], image:null},
            {code:"Individual Services &raquo;", "url":"./services/individual.php"},
            {code:"Employment Services &raquo;", "url":"./services/employment.php"},
			{code:"Employer Services &raquo;", "url":"./services/employer_services.php"},
			{code:"Special Programs &raquo;", "url":"./services/special_programs.php"}
        ]
    },
	{code:'', url:"./branches/branches.php", itemoff:[0,107], size:[36,106], image:[ 'branches.gif', 'branches-over.gif' ], imgsize:[36,106],
		sub:[
			{"itemoff":[22,0], size:[22,191], leveloff:[36,6], image:null},
			{code:"Carson City &raquo;", "url":"./branches/carsoncity.php"},
			{code:"Reno/Sparks &raquo;", "url":"./branches/reno.php"},
			{code:"Elko &raquo;", "url":"./branches/elko.php"},
			{code:"Ely &raquo;", "url":"./branches/ely.php"},
			{code:"Winnemucca &raquo;", "url":"./branches/winnemucca.php"},
			{code:"Fallon/Fernley &raquo;", "url":"./branches/fallon.php"},
            {code:"ProNet &raquo;", "url":"./branches/pronet.php"}
		]
	},
	{code:'', url:"./faq/faq.php", itemoff:[0,106], size:[36,52], image:[ 'faq.gif', 'faq-over.gif' ], imgsize:[36,52]},
	{code:'', url:"./contact/contact.php", itemoff:[0,52], size:[36,91], image:[ 'contact.gif', 'contact-over.gif' ], imgsize:[36,91]},
	{code:'', url:"#", itemoff:[0,91], size:[36,156], image:[ 'rightnavhome.gif', 'rightnavhome.gif' ], imgsize:[36,156]}
];
