// 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 = [
    ['Corporate Information ', null, null,
		['History & Heritage', 'history.aspx', null,], // there must be no comma after the last element
		['Mission & Vision', 'mission.aspx', null,],
		['Sponsor Directors', 'sponsor.aspx', null,],
		['Board of Directors', 'board.aspx', null,],
		['Chairman\'s Message', 'chairmansmessage.aspx', null,],
		['Executive Committee', 'ec.aspx', null,],
		['Audit Committee', 'audit.aspx', null,],
		['Management Committee', 'underdev.aspx', null,],
		['Asset Liability Committee','', null,],
		['NBL Photo Gallary','photogallery.aspx', null,]
	],

	['Products & Services', null, null,
		['Deposit Products', null, null,
			['Savings Deposit ', 'savings.aspx', null,],
		    ['Current Deposit ', 'current.aspx', null,],
			['Term Deposit ', null, null,
			    ['Short Term Deposit','shorttermdeposit.aspx',null],
				['Fixed Deposit','fixedtermdeposit.aspx',null]    
			],
			
			['Foreign Currency Deposit', null, null,
				['RFC Deposit','rfcdeposit.aspx',null],
				['NFC Deposit','nfcdeposit.aspx',null]
			],
			['NBL Monthly Saving Scheme', 'monthlydeposit.aspx', null,]
		],
		['Credit Products', null, null,
			['Overdraft', 'overdraft.aspx', null,],
		    ['Lease Financing', 'leasefinance.aspx', null,],
			['House Building', 'homeloan.aspx', null,],
			['Small Medium Enterprise ', 'sme.aspx', null,],
			['Consumer Credit Scheme', 'ccs.aspx', null,],
			['Trade Finance', 'trade.aspx', null,]
		],
		['Cards', null, null,
			['Credit Card', 'creditcard.aspx', null,],
		    ['NBL Power Card', 'powercard.aspx', null,]
			
		],
	],
	['Financial Status', null, null,
		['Annual Report', 'anualReport.aspx', null], 
        ['Financial Performance','performance.aspx', null,],
		['Interest Rate',null, null,
		    ['Deposit Rate','deposit.aspx', null,],
		    ['Lending Rate','bankrate.aspx', null,],
		],
		['Transaction Charges','Charges.aspx', null,]
	],
	['Service Location', null, null,
		['Branch Location', null, null,
            ['Dhaka', 'branch.aspx?division=dhaka', null,],
            ['Chittagong', 'branch.aspx?division=chittagong', null,],
            ['Rajshahi', 'branch.aspx?division=rajshahi', null,],
            ['Khulna', 'branch.aspx?division=khulna', null,],
            ['Sylhet', 'branch.aspx?division=sylhet', null,],
			['Barisal', 'branch.aspx?division=barisal', null,]
        ], // there must be no comma after the last element
        ['SME Service Center', 'SMEbranch.aspx', null,],
		['Online Branches', 'onlinebranch.aspx', null,],
		['Authorize Dealer Branches', 'adbranch.aspx', null,],
		['ATM Location', 'atm.aspx', null,]
	],
	['Overseas operation  ', null, null,
	    ['Correspondent Banking', 'coress.aspx', null,],
	    ['Foreign Remittance', null, null,
	        ['NBL Owned Exchange House', 'owned_exhouse.aspx', null,],
	        ['Western Union ','western.aspx' , null,], // there must be no comma after the last elementf
            ['Other Bank & Exchange', 'exchangeHouse.aspx', null,],
            
        ],
		['Contact Us', 'contactus.aspx', null,]
	],
	['Social Responsibility', null, null,
		['Employment', 'employment.aspx', null,], // there must be no comma after the last elementf
		['Education', 'education.aspx', null,],
		['Sports & Cultural Activities', 'sports.aspx', null,],
		['Disaster Relief', 'relief.aspx', null,],
		['Others', 'others.aspx', null,]
	]

];

