// 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 = [
	['RESEARCH', null, null,
		['Research Activities', null, null,
			['Diagram Overview', 'http://www.totalburncare.com/diagrampage.htm' 
				 // there must be no comma after the last element
			],
			['Research Summary', 'http://www.totalburncare.com/research_summarypage.htm'
				
			],
			['Funding & Grant Support', 'http://www.totalburncare.com/funding_grant_supportpage.htm'
				
			],
			['Scientific Staff Totals', 'http://www.totalburncare.com/sci_staff_totals.htm'
				
			],
			['Clinical Advances', 'http://www.totalburncare.com/advances_summary_page.htm'
	
			]
		],
		// 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'
		['Funded Projects', null, null,
			['NIDRR Website', 'http://www.utmb.edu/sbhnidrr'

		],
			['NIH Training Grant', 'http://www.totalburncare.com/NIH_training_grantpage.htm'

		],
			['NIH P50', 'http://www.totalburncare.com/NIH_P50_page.htm'

		],
			['NIH R01', 'http://www.totalburncare.com/NIH_R01page.htm'

		],
			['Glue Grant', 'http://www.gluegrant.org/burnresearch.htm'

		]
		],
		['Clinical Activities', 'http://www.totalburncare.com/clinical_activities_page.htm'],
	],
	['EDUCATION', null, null,
		// this is how item scope settings are defined
		['Training Summary', 'http://www.totalburncare.com/summary_training_programspage.htm'
	],
		// this is how multiple item scope settings are defined
		['Training Specifics', 'http://www.totalburncare.com/specific_training_programspage.htm'
	],
		['Contacts', 'http://www.totalburncare.com/contacts_fellowships_training.htm'
	],
		['ABLS', 'http://www.totalburncare.com/ABLS_page.htm'
	],
		['House Staff Manual', 'http://www.totalburncare.com/orientation_intro.htm'
	],
		['Publications', 'http://www.totalburncare.com/publications_page.htm'
	],
	],
	['HOSPITALS', null, null,
		['Shriners Galveston', 'http://www.totalburncare.com/shrinepage.htm'
	],
		['Shriners Referrals', 'http://www.totalburncare.com/shrine_refer.htm'
	],
		['Shriners International', 'http://www.shrinershq.org'
	],
		['UTMB Blocker Burn Unit', 'http://www.totalburncare.com/blocker_burn_unitpage.htm'
	],
		['UTMB Referrals', 'http://www.totalburncare.com/UTMB_refer.htm'
	],
		['UTMB Website', 'http://www.utmb.edu'],
	],

	['CONTACTS', null, null,
		['Medical Staff', 'http://www.totalburncare.com/medical_staff.htm'
	],
		['Clinical Staff', 'http://www.totalburncare.com/clinical_staff.htm'
	],
		['Scientific Staff', 'http://www.totalburncare.com/scientific_staffpage.htm'
	],
	],
];
