// 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 Lowfields experience','overview.asp', {'tw' : '_self'}],
		['Why choose us?','whychoose.asp', {'tw' : '_self'}],
		['About us','about.asp', {'tw' : '_self'}]
	],
	['Fishing', '', {'tw' : '_self'},
		['Lakes and Fish Stock','fishing.asp', {'tw' : '_self'}]
	],
	['Holiday caravans for sale', '', {'tw' : '_self'},
		['Caravans for sale','./caravansales.asp', {'tw' : '_self'}],
		['FAQ’S','./faq.asp', {'tw' : '_self'}]
	],
	['Holidays at Lowfields', '', {'tw' : '_self'},
		['Overview & accommodation','./holidayrentals.asp', {'tw' : '_self'}],
		['Check availability','./holidayrentals.asp#cabins', {'tw' : '_self'}],
		['How to book','howtobook.asp', {'tw' : '_self'}],
		['T&C’s','tandc.asp', {'tw' : '_self'}],
		['Access statement','./accessstatement.asp', {'tw' : '_self'}]
	],
	['Park information', '', {'tw' : '_self'},
		['Park layout','parkmap.asp', {'tw' : '_self'}],
		['We are dog friendly','dogfriendly.asp', {'tw' : '_self'}],
		['Caravan services available','services.asp', {'tw' : '_self'}]
	],
	['Local area', 'localarea.asp', {'tw' : '_self'},
		['Local area','localarea.asp', {'tw' : '_self'}]
	],
	['Wildlife & conservation', '', {'tw' : '_self'},
		['Regularly seen wildlife','conservation.asp', {'tw' : '_self'}],
		['David Bellamy Award','awards.asp', {'tw' : '_self'}],
	],
	['Contact us', '', {'tw' : '_self'},
		['Latest news','./newsletter.asp', {'tw' : '_self'}],
		['Request a free brochure','./requestinfo.asp', {'tw' : '_self'}],
		['How to find us','./map.asp', {'tw' : '_self'}],
		['Our contact details','contactdetails.asp', {'tw' : '_self'}]
	],
	['Customer Testimonials', './testimonials.asp', {'tw' : '_self'},
		['Caravan owners','testimonials.asp', {'tw' : '_self'}],
		['Holiday Makers Guest Book','guestbook.asp', {'tw' : '_self'}]
	],
];
