// 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 = [
				  
				  
	
	['Home', 'index.php'
		
		
	],
	['Gallery ', 'Gallery.php',
		
		
	],
	
	['Products', null, null,
		['Investments ', null, null,
			['Liquid', 'liquid.php'
				// there must be no comma after the last element
			],
			
			
			['Growth ', 'growth.php'
				
			],
			
			['Strategic', 'stratergic.php'
				
			],
			
			['UNO +   ', 'uno.php'
			 
			],
			
			['LIA   ', 'lia.php'
			 
			],
			
		],
		
		['Direct Investment ', 'direct_inv.php'
		
		],
		['SUKUK (Islamic Bonds) ', 'sukuk.php'
		],
		['Cost&nbsp;<sup>+</sup> Acquire  ', 'cost.php'
		],
		['Financial Advisory Services  ', 'financial.php'
		],
		['Strategic Distribution  ', 'stdistri.php'
		],
		['ISTISNA "The Work"   ', 'isthisna.php'
		],
		['Asset & Wealth Mgmt..   ', 'assetman.php'],
		
	],
		
	
	['Subsidiaries', null, null,
		
			['Knowledge Centre (FGKC)', 'http://www.fgkcentre.com/'
				// there must be no comma after the last element
			],
			
			
			['Technologies (FGT) ', 'http://www.firstglobaltec.com/'
				
			],
			
			['Publications (PP)', 'http://www.pioneer-publications.com/'
				
			],
			
			['Pawn Broking (Al Rahn)', 'http://www.rahn.firstglobal-group.com/'
				
			]
			
			
	],
		
	
	['Contact', 'contact.php'
	],


	
	
	
];

