// 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 AMENU_ITEMS_ABOUT = [
	['ABOUT US', 'main_about.php?pageName=home', null,
	 ['Board of Directors', 'main_about.php?pageName=board'],
	 	['Management Team', 'main_about.php?pageName=management'],
	 	['Advisors', 'main_about.php?pageName=advisors']
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		// ['Board of Directors', 'javascript:alert(\'Please Select The Time Frame\')']
		
	],
	['ENVIRONMENT', 'main_environment.php?pageName=home'],
	['TECHNOLOGY', 'main_technology.php?pageName=home'],
	['PROJECTS', 'main_project.php?pageName=home', null,
	 	['Panoche Valley', 'main_project.php?pageName=pvalley'],
		['Future Projects', 'main_project.php?pageName=pranch' ],
		['Solargen FAQ', 'main_project.php?pageName=faq' ]
	],
	['INVESTORS','main_news.php?pageName=home'],
	['CONTACT US', 'main_contact.php?pageName=home']
];