// 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.divewise.org',
	],
	['ABOUT US','about-us.html',null,
		['About Us','about-us.html'],
		['Our Story','our-story.html'],
		['Advisory Board','advisory-board.html'],
	],
	['SAFETY', 'safety.html',null,
		['Safety Info     >>','http://www.divewise.org/safety.html#info',null,
			['Blackout Explained','blackout-explanation.html'],
			['Avoiding Blackout','safety-tips.html'],
			['Blackout Statistics','dan-stats.html'],
			['Breath-Hold Diving','http://www.divewise.org/articles/pollock_bh_review.pdf',{'tw' : 'new'}],
			['Educational Video','dw-video.html'],
			['Critical Incident Stress','http://www.divewise.org/articles/critical_incident_stress_alert_diver_2009_marapr_ 24-25.pdf',{'tw' : 'new'}],
			['Partner Diving...','krb_partner_diving.html'],
			['Proposed 60s Rule','http://www.divewise.org/articles/Proposed_60_second_dive_limit.pdf'],
		],
		['Safety Products     >>','http://www.divewise.org/safety.html#products',null,
			['Freediver Recovery Vest','http://www.divewise.org/frv.html'],
		],
	],
	['SPONSORS',null,null,
		['Our Sponsors','sponsors.html'],
		['Related Links','links.html'],
	],
	['NEWS & EVENTS',null,null,
		['News','news.html'],
		['Events','events.html'],
	],
	['STORIES',null,null,
		['Tell us Your Story','submit_story.html'],
		['- - - - - - - - - - - -',null],
		['Blackout Stories','stories.html'],
		['Memorial','memorial.html'],
	],
	['CONTACT US', 'contact-us.html',null,
		['Donate Now', 'donate.html'],
		['Email Us', 'mailto:info@divewise.org'],
		['Contact Info','contact-us.html'],
	],
];