// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Home', 'index.php', null,
		['About Us', 'about.php'],
		['Our Team', 'ourteam.php'],
		['Support Reach Out', 'http://www.shopreachout.com/makeadonation.aspx'],
		['Calendar', 'calendar.php'],
		['Contact Us', 'contact.php']
	],
	['Jesus-Focused Youth Ministry', 'jesusfocused.php', null,
		['Jesus-Focused Youth Ministry', 'jesusfocused.php'],				
		//['Discover Solutions' , 'discoversolutions.php'],
		['Jesus-Focused Youth Ministry Forum' , 'youthministryforum.php'],
		['Eagle Leaders' , 'eagleleaders.php'],
		['National' , 'national.php'],
		['Global' , 'international.php']
	],
	['Parent Fuel', 'javascript:window.open(\'http://www.parentfuel.org/index.php\');'],
	['Free Resources', 'resources.php', null,
	 	['Print Downloads', 'resources.php'],
		['Audio Downloads', 'audio_messages.php'],
		['E-Visions', 'evision.php'],
		['Video Messages', 'videomessages.php'],
		['Radio Interviews', 'radio_interviews.php'],
		['Articles', 'articles.php'],
		['Links','links.php']
	],
	['Shop', 'http://www.shopreachout.com/'],
	['Donate', 'http://www.shopreachout.com/makeadonation.aspx']
];
