// this file is duplicated in the resources/essays/scripts dirctory, where all the URLs have "../../" to get out to the root
// if you add menu items HERE, be sure to add them THERE as well

BLANK_IMAGE = 'images/b.gif';

var STYLE = 
	{
    border: 0,               // item's border width, pixels; zero means "none"
    shadow: 0,               // item's shadow size, pixels; zero means "none"
    color:
    	{
        border: "#6D458B",   // color of the item border, if any
        shadow: "#6D458B",   // color of the item shadow, if any
        bgON:   "#BB81E7",   // background color for the items
        bgOVER: "#BB81E7"    // background color for the item which is under mouse right now
    	},
    css:
    	{
        ON:     "clsCMOn",   // CSS class for items
        OVER:   "clsCMOver"  // CSS class  for item which is under mouse
    	}
	};

var STYLESUB = 
	{
    border: 1,               // item's border width, pixels; zero means "none"
    shadow: 0,               // item's shadow size, pixels; zero means "none"
    color:
    	{
        border: "#6D458B",   // color of the item border, if any
        shadow: "#6D458B",   // color of the item shadow, if any
        bgON:   "#BB81E7",   // background color for the items
        bgOVER: "#6D458B"    // background color for the item which is under mouse right now
    	},
    css:
    	{
        ON:     "clsSMOn",   // CSS class for items
        OVER:   "clsSMOver"  // CSS class  for item which is under mouse
    	}
	};

var MENU_ITEMS =
  [
    {pos:'relative', itemoff:[0,100], leveloff:[30,0], size:[30,100], style:STYLE},
    {code:"Home", url:"index.html"},
    {code:"About Us", url:"aboutUs.html", format:{itemoff:[0,75]},
        sub:[
            {itemoff:[21,0], size:[22,160], style:STYLESUB},
            {code:"How We Came To Be", url:"howWeCameToBe.html"},
            {code:"Our Members", url:"ourMembers.html"},
            {code:"Core Values", url:"coreValues.html"},
            {code:"Statement of Faith", url:"statementOfFaith.html"},
            {code:"Executive Committee", url:"executiveCommittee.html"},
            {code:"House of Delegates", url:"houseOfDelegates.html"},
			{code:"F.A.Q.s", url:"faq.html"},
            {code:"Our Logo", url:"ourLogo.html"}
        	]
    },
    {code:"Our Congregations", url:"ourCongregations.html", format:{size:[30,150]},
        sub:[
            {itemoff:[21,0], size:[22,180], style:STYLESUB},
            {code:"Provinces and Dioceses", url:"provincesAndDioceses.html"},
            {code:"Member Congregations", url:"memberCongregations.asp"},
            {code:"Our Congregations' Profiles", url:"congregationsProfile.asp"},
			{code:"The Rectors Speak", url:"rectors-speak.html"}
        	]
    },
    {code:"Our Ministries", url:"ourMinistries.html", format:{size:[30,150], itemoff:[0,170]},
        sub:[
            {itemoff:[21,0], size:[22,220], style:STYLESUB},
            {code:"Missions", url:"missions.html"},
            {code:"Evangelism", url:"evangelism.html"},
            {code:"Congregational Development", url:"congregationalDevelopment.html"},
            {code:"Discipleship", url:"discipleship.html"},
            {code:"Clergy Development", url:"clergyDevelopment.html"},
            {code:"Clergy Deployment", url:"clergyDeployment.html"},
            {code:"Theological Education", url:"theologicalEducation.html"},
            {code:"Clergy Support", url:"clergySupport.html"},
            {code:"Ministry Development Program", url:"ministryDevelopment.html"},
			{code:"Events Committee", url:"events-committee.html"}
        	]
    },
    {code:"Resources", url:"resources.html", format:{itemoff:[0,130]},
        sub:[
            {itemoff:[21,0], size:[22,100], style:STYLESUB},
            {code:"Essays", url:"essays.asp"},
            {code:"Sermons", url:"sermons.html"},
            {code:"Potpourri", url:"potpourri.asp"}
        	]
    },
    {code:"Join", url:"join.html", format:{itemoff:[0,110]},
        sub:[
            {itemoff:[21,0], size:[25,160], style:STYLESUB},
            {code:"Membership Criteria", url:"membershipCriteria.html"},
            {code:"Membership Obligations", url:"membershipObligations.html"},
            {code:"Application Process", url:"applicationProcess.html"},
            {code:"Application Form", url:"applicationForm.pdf"},
			{code:"Ministry Partners", url:"ministrypartners.html"},
            {code:"Membership Committee", url:"membershipCommittee.html"}
        	]
    },
    {code:"Contact", url:"contact.html", format:{itemoff:[0,75]}}
  ];
