// 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 = [
	['Accueil', "home.php", null],
	['Bien du mois', "http://www.4gimmo.be/pages/searchresult.php?bdumois=1", null],
	['Notre philosophie', "notrephilosophie.php", null],
	['Nos biens sur le marché', null, null,
		['Nouveaux biens vente','http://www.4gimmo.be/pages/searchresult.php?ctypmandat=v&bnouveautes=1'],
		['Nouveaux biens location','http://www.4gimmo.be/pages/searchresult.php?ctypmandat=l&bnouveautes=1'],
		['Maisons','http://www.4gimmo.be/pages/searchresult.php?ctyp=ma&ctypmandat=v'],
		['Appartements','http://www.4gimmo.be/pages/searchresult.php?ctyp=apt&ctypmandat=v'],
		['Locations','http://www.4gimmo.be/pages/searchresult.php?ctypmandat=l'],
		['Terrains','http://www.4gimmo.be/pages/searchresult.php?ctyp=terr&ctypmandat=v'],
	],
	['Votre profil de recherche', "votreprofil.php", null],
	['Nous contacter', "nouscontacter.php", null]
];


