nmenu= new Array();
nline=0;
cmenu=0;

// START EDIT

//AddMenu('Home','../');
AddMenu('&nbsp;Home','../index.html');
AddMenu('About us','about-close.html');
	AddSub('Our goal','close-goal.cfm');
	AddSub('Our people','close-people.cfm');
	AddSub('Our partners','close-partners.html');
AddMenu('Why Premium Finance?','why-premium-finance.cfm');
	AddSub('Our guarantees','close-guarantees.html');
	AddSub('Transferring to Close','close-transfer.html');
AddMenu('Products & services','close-products.cfm');
	AddSub('Technology','close-technology.html');
	AddSub('Commercial lines','close-commercial.cfm');
	AddSub('Personal lines','close-personal.cfm');
	AddSub('Cash management','close-cash.html');
	AddSub('Adding value','close-value.html');
	AddSub('Collections','close-coll.html');
	AddSub('HIP funding','close-hips.html');
AddMenu('FAQs','close-faq.cfm');
	AddSub('Glossary','close-glossary.html');
AddMenu('Newsroom','close-newsroom.cfm');
	AddSub('Press releases','close-press.cfm');
	AddSub('Close news','close-premium-news.cfm');
	AddSub('Live News','news.html');
AddMenu('Contact us','contact-close-premium.html');

// END EDIT

function AddMenu(a,b) {
	nline=nline+1;
	cmenu=cmenu+1;
	nmenu[nline]=[cmenu,0,a,b]
}

function AddSub(a,b) {
	nline=nline+1;
	nmenu[nline]=[cmenu,1,a,b]
}
