// 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 = [
        ['Premium Payment', 'cs_payment.htm',
	    [null, null],
		['Autodebit', 'cs_payment.htm#a'],
		['Internet Banking', 'cs_payment.htm#b'],
		['ATM/Phonebanking','cs_payment.htm#c'],
		['Cash or Cheque','cs_payment.htm#d']
	  ],
	  ['Claims','cs_claims.htm'],
	  ['Policy Loan','cs_PolicyLoan.htm'],
	  ['e-forms','cs_e-forms.htm'],
	  ['FAQ','faq.htm']
];

