// 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 = [
	['Galleries', '../', null,
		['Portrait', '../', null,
		],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Extra Curricular', '../extracurricular/', null,
		],
	],
	['Contact', 'http://photo.scotthewitt.co.uk/contact', null,],
	['Blog', '../', null,
		['this weeks portrait', 'http://twp.scotthewitt.co.uk', {'two':'_blank'},],
		['Scott Blog', 'http://www.scotthewitt.co.uk/index.php?category=1', {'two':'_blank'},],
	],
];