// 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 = [
	['empresa', 'empresa.php'],
		

	['contrate', 'contrate.php'],


	
	['atrações', null, null,
		['particulares', 'telegrama_animado.php'],
		['corporativas', 'corporativas.php']
	],
	
	['portfolio', 'portfolio.php'],
	
	['promoções', 'promocoes.php'],
	
	['trabalhe', 'trabalhe.php'],
	
	['contato', 'contato.php']


	];

