// 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 = [
	['Entradas', null, null,
		['Listado', './listado.php?tipo=entrada'],
		['Nueva entrada', './nuevo.php?tipo=entrada'],
	],
	['Categorķas', null, null
	
	]
	,
	['Promo', null, null,
		
	],
	['Sistema', null, null,
		
	],
	['Salir', './logout.php']
];