/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/

function wrap1(text, bg_color, fg_color) {
return('<table cellpadding="0" cellspacing="0" border="0" bgcolor="'
+ bg_color + '" width="100%" height=15><tr><td style="'
+ 'font-family: arial; font-size: 11px; color:'
+ fg_color + '">' + text + '</td></tr></table>');
}

var MENU_ITEMS = [
	[wrap('WHO WE ARE'), null, null,
		['OUR VISION &amp; MISSION', '/home/dsp_WhoWeAre/index.php?pg=visionMission'],
		['OUR BASIC BELIEFS', '/home/dsp_WhoWeAre/index.php?pg=basicBelief'],
		['OUR STAFF', '/home/dsp_WhoWeAre/index.php?pg=staff1'],
		['OUR AFFILIATION', '/home/dsp_WhoWeAre/index.php?pg=affiliation']
	],
	[wrap('WHAT WE DO'), null, null,
		['MINISTRIES',null,null,
			['CHILDREN&#039S MINISTRY','/home/dsp_WhatWeDo/index.php?pg=childrenMinistry'],
			['YOUTH MINISTRY','/home/dsp_WhatWeDo/index.php?pg=youthMinistry'],
			['WOMEN&#039S MINISTRY','/home/dsp_WhatWeDo/index.php?pg=womenMinistry']
		],
		['GROWTH GROUPS','/home/dsp_WhatWeDo/index.php?pg=hfgOverview'],
		['EVENTS','/home/dsp_WhatWeDo/index.php?pg=events']
		
	],
	[wrap('RESOURCES'), null, null,
		['SERMONS', '/home/dsp_Resources/index.php?pg=sermonseries'],
		['READINGS', 'http://astore.amazon.com/wwwgraceredee-20']
		
	],
	[wrap('FIND US'), null, null,
		['SERVICE TIME', '/home/dsp_FindUs/index.php?pg=serviceTime'],
		['DIRECTIONS', '/home/dsp_FindUs/index.php?pg=directions'],
		['CONTACT US', '/home/dsp_FindUs/index.php?pg=contactUs']
	]
];

function wrap(caption) 
{
	if (caption == CURRENT_ITEM)
	{
		return '<font color="#A8A185">' + caption + '</font>';
	}
	else
	{
		return '<font onmouseover=this.style.color="B8B099" onmouseout=this.style.color="#000000">' + caption + '</font>';
	}
}