// 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 Thurleigh', null, null,
		['Home', '/index.php', {'sb':'Back to our home page'}],
		['Thurleigh Parish Council', '/index.php?body=pc', {'sb':'Thurleigh Parish Coucil'}],
		['Thurleigh Parish Plan (PDF)', '/thurleigh_parish_plan.pdf', {'tw':'_blank'}],
		['Allocations + Designations Plan', '/index.php?body=plan', {'sb':'Allocations and Designations draft plan'}],
		['Maps', '/index.php?body=map', {'sb':'Where are we'}],
		['Bus Routes', '/index.php?body=busroutes', {'sb':'Getting to and from Thurleigh'}],
		['Environmental Improvement', '/index.php?body=ein', {'sb':'Thurleigh Environmental Improvement Network'}],
		['Mobile Library', '/index.php?body=mobilelibrary', {'sb':'Mobile Library'}],
		['Neighbourhood Watch', '/index.php?body=crimestats', {'sb':'Neighbourhood Watch'}],
		['Can you help?', '/index.php?body=volunteer', {'sb':'Volunteers Needed'}],
		['Report fault to Borough Council', '/index.php?body=fixmystreet', {'sb':'Report Faults to Bedford Borough Council'}],
		['Useful Contacts', '/index.php?body=contacts', {'sb':'Contacts'}]
	],
	['Businesses & Associations', null, null,
		['Employment', null, null,
			['Thurleigh Business Park', '/index.php?body=placing_people', {'sb':'Job Opportunities from Placing People'}]
		],
		['Education', null, null,
			['Thurleigh Lower School', '/index.php?body=lowerschool', {'sb':''}],
			['Thurleigh Pre School', '/index.php?body=preschool', {'sb':''}],
			['Friends of Thurleigh School', '/index.php?body=fots', {'sb':''}]
		],
		['Accommodation', null, null,
			['Scald End Farm Cottages', '/index.php?body=scaldaccom', {'sb':'Scald End Farm Cottages'}],
			['Thurleigh Windmill B&B', '/index.php?body=windmill', {'sb':'Thurleigh Windmill B&B'}]
		],
		['Home Improvement', null, null,
			['Lantern Developments Ltd', '/index.php?body=lantern', {'sb':'Lantern Developments - Windows, Conservatories and buildings'}]
		],
		['Days Out', null, null,
			['Thurleigh Farm Centre', '/index.php?body=thurleighfarm', {'sb':'Thurleigh Farm Centre'}]
		],
		['Demolition', null, null,
			['C Jackson and Sons Ltd', '/index.php?body=cjackson', {'sb':'C Jacksons and Sons Ltd'}]
		],
		['Farm Shop', null, null,
			['Scald End Farm Shop', '/index.php?body=scaldfarm', {'sb':'Scald End Farm Cottages'}]
		],
		['Health and Fitness', null, null,
			['Holistic Hypnotherapy', '/index.php?body=hypn', {'sb':'Holistic Hypnotherapy'}]
		],
		['Wine & Dine', null, null,
			['The Jackal', '/index.php?body=jackal', {'sb':'The Jackal'}]
		],
		['Clubs and Associations', null, null,
			['Cricket Club', '/index.php?body=cricket', {'sb':'Cricket Club'}],
			['Football Club', '/index.php?body=football', {'sb':'Football Club'}],
			['Scouts', '/index.php?body=scouts', {'sb':''}],
			['Village Hall', '/index.php?body=villagehall', {'sb':'Village Hall'}],
			['Walking Group', '/index.php?body=walking', {'sb':'Thurleigh Walking Group'}],
			['Youth Club', '/index.php?body=youthclub', {'sb':'Thurleigh Youth Club'}],
			['Bedford Area Bus Users Group', 'http://babus.org.uk/', {'sb':'Babus'}]
		],
		['Harvey Trust', '/index.php?body=harvey', {'sb':'The Harvey Trust'}],
		['Religion & Spirituality', null, null,
			['St Peters Church', '/index.php?body=church', null],
			['Friends of St Peters', '/index.php?body=friendsofstpeters', null],
			['Thurleigh Baptist Chapel', '/index.php?body=baptist', null]
		],
	],
	['History & Genealogy', null, null,
		['Census Transcripts', '/index.php?body=census', {'sb':'Read Census Transcripts for the village'},],
		['1722/1784 Pollbooks', '/index.php?body=csv.php&file=pollbook', {'sb':'Read Pollbook Transcripts for the village'},],
		['Gaol Records (Thurleigh)', '/gaol.php', {'tw':'_blank'}],
		['Historical Trade Directory', '/trade.php', {'tw':'_blank'}],
		['Timeline of Thurleigh History', 'index.php?body=csv.php&file=timeline', {'sb':'Timeline'},],
		['90Yrs of the War Memorial', 'index.php?body=warmemorial',{'sb':'90 Years of Thurleigh War Memorial'}],
		['Vicars of St Peters Church', 'index.php?body=csv.php&file=stpeters_vicars',{'sb':'Vicars of St Peters Church'}],
//		['Monumental Inscriptions', '#', {'sb':'Read monumental inscriptions'}],
//		['Parish Registers', '#',{'sb':'Read monumental inscriptions'}],
		['Olde Thurley', '/index.php?body=olde.php',{'sb':'View pictures etc from yesteryear'}]
	],
	['Local Walks', null, null,
		['Walking Group', '/index.php?body=walking', {'sb':'Thurleigh Walking Group'}],
		['Short Walk', '/index.php?body=villagewalk3', {'sb':'View a local Walk'},],
		['Medium Walk', '/index.php?body=villagewalk4', {'sb':'View a local Walk'},],
		['Long Walk', '/index.php?body=villagewalk5', {'sb':'View a local Walk'},],
		['Walk Of The Month-May 2010', '/index.php?body=villagewalk1', {'sb':'View a local Walk'},],
		['Walk Of The Month-July 2010', '/index.php?body=villagewalk2', {'sb':'View a local Walk'},],
		['Blacklands and Hook Spinney', 'Blacklands and Hook Spinney.pdf', {'sb':'View a local Walk'},]
	]
]
;

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



