// 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', 'http://www.reach-out.org/index.php', null,
		['About Us', 'http://www.reach-out.org/about.php'],
		['Our Team', 'http://www.reach-out.org/ourteam.php'],
		['Support Reach Out', 'http://www.reach-out.org/supportreachout.php'],
                ['Calendar', 'http://www.reach-out.org/calendar.php'],
		['Contact Us', 'http://www.reach-out.org/contact.php']
	],
	['Training', 'http://www.reach-out.org/jesusfocused.php', null,
		['Jesus Focused Youth Ministry&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>></strong>', 'http://www.reach-out.org/jesusfocused.php', null,
				['What is it?' , 'http://www.reach-out.org/whatisit.php'],
				['Jesus Focused Youth Ministry Forum' , 'http://www.reach-out.org/youthministryforum.php'],
				['Eagle Leaders' , 'http://www.reach-out.org/eagleleaders.php'],
				['National' , 'http://www.reach-out.org/national.php'],
				['International' , 'http://www.reach-out.org/international.php']
		],
		['Parent Fuel&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>></strong>', 'javascript:window.open(\'http://www.parentfuel.org/index.php\');', null,
				['Parent Fuel Kit' , 'javascript:window.open(\'http://www.parentfuel.org/index.php?page=6#products\');'],
				['Parent Fuel Experience' , 'javascript:window.open(\'http://www.parentfuel.org/index.php?page=7#products\');'],
				['Book' , 'javascript:window.open(\'http://www.parentfuel.org/index.php?page=0#products\');'],
				['Journal' , 'javascript:window.open(\'http://www.parentfuel.org/index.php?page=1#products\');'],
				['DVDs' , 'javascript:window.open(\'http://www.parentfuel.org/index.php?page=3#products\');'],
				['CDs' , 'javascript:window.open(\'http://www.parentfuel.org/index.php?page=2#products\');'],
				['Leader\'s Guide' , 'javascript:window.open(\'http://www.parentfuel.org/index.php?page=4#products\');'],
				['Parent Pack' , 'javascript:window.open(\'http://www.parentfuel.org/index.php?page=5#products\');']
		]
	],
	['Resources', 'http://www.reach-out.org/resources.php', null,
		['E-Visions', 'http://www.reach-out.org/evision.php'],
		['Links', 'http://www.reach-out.org/links.php'],
		['Audio Messages', 'http://www.reach-out.org/audio_messages.php']
		
	],
	['Shop', 'http://www.shopreachout.com/'],
	['Donate', 'http://www.shopreachout.com/makeadonation.aspx']
];