// 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 = [
	['About', null, null,
			[pupup('','<iframe frameborder=0 src="submenu.php?menu=about" style="width:500px; height:80px;" scrolling="no"></iframe>'),, {'sb':'About'}]
	],
	['News', null, null,
		[pupup('News','<iframe frameborder=0 src="submenu.php?menu=news" style="width:280px; height:80px;" scrolling="no"></iframe>'),, {'sb':'News'}]
	],
	['Features', null, null,
		[pupup('Features','<iframe frameborder=0 src="submenu.php?menu=features" style="width:390px; height:80px;" scrolling="no"></iframe>'),, {'sb':'Features'}]
	],		
	
	['Operations', null, null,
		[pupup('Operations','<iframe frameborder=0 src="submenu.php?menu=ops" style="width:520px; height:80px;" scrolling="no"></iframe>'),, {'sb':'Operations'}]
	],
	['Links', null, null,
		['Air Cadet Sites', null, null,
			['Official Air Cadet Site', 'http://www.raf.mod.uk/aircadets', {'tw':'_blank'}],
			['Central and East Region', 'http://www.centraleast-atc.org.uk/', {'tw':'_blank'}],
			['Beds and Cambs Wing', 'http://www.bedscambswgatc.org/', {'tw':'_blank'}]
		],
		['Military Sites', null, null,
			['Royal Air Force', 'http://www.raf.mod.uk', {'tw':'_blank'}],
			['Royal Navy', 'http://www.royalnavy.mod.uk', {'tw':'_blank'}],
			['Army', 'http://www.army.mod.uk', {'tw':'_blank'}],
			['MOD', 'http://www.mod.uk/', {'tw':'_blank'}],
			['NATO', 'http://www.nato.int/', {'tw':'_blank'}],
			['134 RAF Aircraft', 'http://www.rafweb.org/SqnMark126-140.htm#134', {'tw':'_blank'}],
			['5.56mm Rifle Trainer', 'http://www.dlp-prodcont001.mod.uk:80/U/Common/Cosford-TBT/Web-050/Start.htm', {'tw':'_blank'}],
			['UK Threat Level', 'http://www.cabinetoffice.gov.uk/security_and_intelligence/community/threat_levels.aspx', {'tw':'_blank'}]
		],
		['Local', null, null,
			['Airship Heritage Trust', 'http://www.aht.ndirect.co.uk', {'tw':'_blank'}],
			['Cardington War Graves', 'http://www.roll-of-honour.com/Bedfordshire/CardingtonRollofHonour.html', {'tw':'_blank'}],
			['Bletchley Park', 'http://www.bletchleypark.org', {'tw':'_blank'}],
			['Bedford Borough Council', 'http://www.bedford.gov.uk/', {'tw':'_blank'}],
			['Eastcotts Parish Council', 'http://eastcottsparishcouncil.bedsparishes.gov.uk', {'tw':'_blank'}]
		],
		['Misc', null, null,
			['Aircraft Rec Site', 'http://www.targeta.co.uk', {'tw':'_blank'}],
			['BBC News', 'http://news.bbc.co.uk', {'tw':'_blank'}],
			['Daily Telegraph', 'http://www.telegraph.co.uk', {'tw':'_blank'}],
			['Cadet Kit Shop', 'http://www.cadetkitshop.com', {'tw':'_blank'}],
			['Duke Of Edinburgh Award', 'http://www.theaward.org', {'tw':'_blank'}],
			['Millennium Volunteers', 'http://www.millenniumvolunteers.gov.uk', {'tw':'_blank'}],
			['The Met Office', 'http://www.metoffice.gov.uk/', {'tw':'_blank'}],
			['Animated Knots', 'http://www.animatedknots.com', {'tw':'_blank'}]
		]

	]
]
;

function pupup (title, text) {
	return '<table border=0 cellpadding=10 cellspacing=0><tr><td>' + text + '</td></tr></table>';
}


