// 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 = [
	['Overview', '', {'tw' : '_self'},
		['The Highfields experience','overview.asp', {'tw' : '_self'}],
		['Why choose us?','whyus.asp', {'tw' : '_self'}],
		['About us','about.asp', {'tw' : '_self'}]
	],
	['Fishing', '', {'tw' : '_self'},
		['We are the experts!','speciality.asp', {'tw' : '_self'}],
		['Our lakes & fish stock','fishing.asp', {'tw' : '_self'}],
		['Dr Bruno Broughton','brunobroughton.asp', {'tw' : '_self'}],
		['Recent catches','catches.asp', {'tw' : '_self'}],
		['Free tuition','tuition.asp', {'tw' : '_self'}]
	],
	['Holiday caravans for sale', '', {'tw' : '_self'},
		['Caravans for sale','./caravansales.asp', {'tw' : '_self'}],
		['FAQ’S','./faq.asp', {'tw' : '_self'}],
		['Customer testimonials','profiles.asp', {'tw' : '_self'}],
		['Try before you buy!','try.asp', {'tw' : '_self'}],
		['Recommend a friend','referafriend.asp', {'tw' : '_self'}],
		['Own a caravan elsewhere?','movetous.asp', {'tw' : '_self'}]
	],
	['Lodges for sale', '', {'tw' : '_self'},
		['Lodges for sale','./logcabinsales.asp', {'tw' : '_self'}],
		['The Lodge Lifestyle','lifestyle.asp', {'tw' : '_self'}],
		['Lodge Q & A\'s','lodgeQA.asp', {'tw' : '_self'}],
		['Personal Use','11month.asp', {'tw' : '_self'}],
		['Income Potential','lodgeIncome.asp', {'tw' : '_self'}],
		['Shared ownership','shared_ownership.asp', {'tw' : '_self'}],
		['Our exclusive pitches','pitches.asp', {'tw' : '_self'}],
		['Quality service at Highfields','vip.asp', {'tw' : '_self'}]
	],
	['Holidays at Highfields', '', {'tw' : '_self'},
		['Overview & accommodation','./holidayrentals.asp', {'tw' : '_self'}],
		['Holiday options','holidayoptions.asp', {'tw' : '_self'}],
		['Guest book','guestbook.asp', {'tw' : '_self'}],
		['Check availability','./holidayrentals.asp#cabins', {'tw' : '_self'}],
		['How to book','howtobook.asp', {'tw' : '_self'}],
		['T&C’s','tandc.asp', {'tw' : '_self'}],
		['Recommend a friend','referafriendhols.asp', {'tw' : '_self'}],
		['Access statement','./accessstatement.asp', {'tw' : '_self'}]
	],
	['Park information', '', {'tw' : '_self'},
		['Park layout','parklayout.asp', {'tw' : '_self'}],
		['We are dog friendly','dogfriendly.asp', {'tw' : '_self'}],
		['Friends & family welcome','familywelcome.asp', {'tw' : '_self'}],
		['Caravan services available','parkservices.asp', {'tw' : '_self'}],
		['Development of the park','reality.asp', {'tw' : '_self'}]
	],
	['Local area', 'localarea.asp', {'tw' : '_self'},
		['Local area','localarea.asp', {'tw' : '_self'}]
	],
	['Wildlife & conservation', '', {'tw' : '_self'},
		['Our woodland','woodland.asp', {'tw' : '_self'}],
		['Our nature reserve','reserve.asp', {'tw' : '_self'}],
		['David Bellamy award','./awards.asp', {'tw' : '_self'}],
		['Regularly seen wildlife','visiblewildlife.asp', {'tw' : '_self'}],
	],
	['Contact us', '', {'tw' : '_self'},
		['Latest news','./newsletter.asp', {'tw' : '_self'}],
		['How to find us','./map.asp', {'tw' : '_self'}],
		['Our contact details','contactdetails.asp', {'tw' : '_self'}]
	],
	['Request a free brochure', './requestinfo.asp', {'tw' : '_self'},
		['Request a free brochure','./requestinfo.asp', {'tw' : '_self'}],
	],
];