// 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'],
	['Resources', 'resources.php', null,
		['Parent Fuel Kit' , 'resources.php?page=6#products'],
		['Book' , 'resources.php?page=0#products'],
		['Journal' , 'resources.php?page=1#products'],
		['DVDs' , 'resources.php?page=3#products'],
		['CDs' , 'resources.php?page=2#products'],
		['Leader\'s Guide' , 'resources.php?page=4#products'],
		['Parent Pack' , 'resources.php?page=5#products']
	],
	['Leader\'s Training' , 'pf_leader_training.php'],
	['Experience Groups' , 'pf_experience_groups.php'],
	['Free Downloads' , 'pf_free_resources.php']
];