var STYLE1 = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#000000",	// color of the item border, if any
		shadow:"#CCCCCC",	// color of the item shadow, if any
		bgON:"#242C79",		// background color for the items
		bgOVER:"#242C79"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"topnav",		// CSS class for items
		OVER:"topnavon"	// CSS class  for item which is under mouse
	}
};

var STYLE2 = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#000000",	// color of the item border, if any
		shadow:"#CCCCCC",	// color of the item shadow, if any
		bgON:"#242C79",		// background color for the items
		bgOVER:"#242C79"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"subnav",		// CSS class for items
		OVER:"subnavon"	// CSS class  for item which is under mouse
	}
};

if (location.host=="localhost") 
{
ROOT_DIR="/wacc/";
}
else
{
ROOT_DIR="/";
}

SPACEY="&nbsp;&nbsp;"

var MENU_ITEMS = [
    {pos:'relative', itemoff:[0,26], leveloff:[26,0], style:STYLE1, blankImage:ROOT_DIR+"images/b.gif"},
    {code:"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HOME", url:ROOT_DIR, format:{size:[26,80]}
    },
    {code:"&nbsp;ABOUT US", url:ROOT_DIR+"AboutUs", format:{size:[26,100], itemoff:[0,80]},
        sub:[
            {"itemoff":[20,0], style:STYLE2},
            {code:SPACEY+"Monthly Luncheons"+SPACEY, url:ROOT_DIR+"AboutUs/Luncheons.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Officers & Board of Directors"+SPACEY, url:ROOT_DIR+"AboutUs/Officers.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Committees"+SPACEY, url:ROOT_DIR+"AboutUs/Committees.asp", format:{size:[20,'+self']}}
        ]
    },
    {code:"&nbsp;MEMBER BENEFITS", url:ROOT_DIR+"MemberBenefits", format:{size:[26,175], itemoff:[0,100]},
        sub:[
            {"itemoff":[20,0], style:STYLE2},
            {code:SPACEY+"Networking"+SPACEY, url:ROOT_DIR+"MemberBenefits/Networking.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Advertising"+SPACEY, url:ROOT_DIR+"MemberBenefits/Advertising.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Referrals"+SPACEY, url:ROOT_DIR+"MemberBenefits/Referrals.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Insurance"+SPACEY, url:ROOT_DIR+"MemberBenefits/Insurance.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Energy Saving"+SPACEY, url:ROOT_DIR+"MemberBenefits/EnergySaving.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Member Discounts"+SPACEY, url:ROOT_DIR+"MemberBenefits/MemberDiscounts.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Newsletter"+SPACEY, url:ROOT_DIR+"MemberBenefits/Newsletter.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Community Support"+SPACEY, url:ROOT_DIR+"MemberBenefits/CommunitySupport.asp", format:{size:[20,'+self']}},
            {code:SPACEY+"Legislative Advocacy"+SPACEY, url:ROOT_DIR+"MemberBenefits/LegislativeAdvocacy.asp", format:{size:[20,'+self']}}
        ]
    },
    {code:"&nbsp;MEMBER DIRECTORY", url:ROOT_DIR+"MemberDirectory", format:{size:[26,190], itemoff:[0,175]}
    },
    {code:"&nbsp;NEWS & EVENTS", url:ROOT_DIR+"NewsEvents", format:{size:[26,145], itemoff:[0,190]}
    },
    {code:"&nbsp;OUR COMMUNITY", url:ROOT_DIR+"OurCommunity", format:{size:[26,155], itemoff:[0,145]}
    },
    {code:"&nbsp;CONTACT US", url:ROOT_DIR+"ContactUs", format:{size:[26,130], itemoff:[0,155]}
    }
];

