// 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 = [
	['ATAKÖY', null, null,
		['38 m² (1+1) Apartments', null, null,
			['Pictures of Apartments', 'ata38_foto.html'], 
			['Features of the Apartments', 'ata38_info.html'],
		],
		// 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'
		['55 m² (1+1) Apartments', null, null,
			['Pictures of Apartments', 'ata55_foto.html'], 
			['Features of the Apartments', 'ata55_info.html'],
		],
	],
	['KA GREEN', null, null,
		// this is how item scope settings are defined
		['36 m² Single-Room', null, null,
			['Pictures of Apartments', 'ka36_foto.html'], 
			['Features of the Apartments', 'ka36_info.html'],
		],
		['42 m² Single-Room-1', null, null,
			['Pictures of Apartments', 'ka42k_foto.html'], 
			['Features of the Apartments', 'ka42k_info.html'],
		],
		['42 m² Single-Room-2', null, null,
			['Pictures of Apartments', 'ka42o_foto.html'], 
			['Features of the Apartments', 'ka42o_info.html'],
		],
			['56 m² (1+1) Apartments-1', null, null,
			['Pictures of Apartments', 'ka56k_foto.html'], 
			['Features of the Apartments', 'ka56k_info.html'],
		],
			['56 m² (1+1) Apartments-2', null, null,
			['Pictures of Apartments', 'ka56o_foto.html'], 
			['Features of the Apartments', 'ka56o_info.html'],
		],
			['94 m² (1+1) Apartments', null, null,
			['Pictures of Apartments', 'ka94_foto.html'], 
			['Features of the Apartments', 'ka94_info.html'],
		],
		// this is how multiple item scope settings are defined
	],
	['OLIMPIAKENT', null, null,
		['60 m² (1+1) Apartments', null, null,
			['Pictures of Apartments', 'ok60_foto.html'], 
			['Features of the Apartments', 'ok60_info.html'],
		],
			['94 m² (2+1) Apartments', null, null,
			['Pictures of Apartments', 'ok94_foto.html'], 
			['Features of the Apartments', 'ok94_info.html'],
		],
	],
	['AKSARAY', null, null,
	 	['55 m² (1+1) Apartments', null, null,
			['Pictures of Apartments', 'ak55_foto.html'], 
			['Features of the Apartments', 'ak55_info.html'],
		],
	],
	['KURTKÖY', null, null,
	 	['60 m² (1+1) Apartments', null, null,
			['Pictures of Apartments', 'kurt60_foto.html'], 
			['Features of the Apartments', 'kurt60_info.html'],
		],
	],
];


