function init()
{
	menus[0] = new menu(160, "vertical", 10, 175, -2, -2, "white", "white", "verdana", 8, 
		"regular", "regular", "#57A546", "#000099", 2, "white", 4, "0", false, true, true, true, 5, false, 4, 4, "black");
	menus[0].addItem("#", "", 60, "right", "About NCB", 1);
	menus[0].addItem("#", "", 60, "right", "Professional Products and Services", 2);
	menus[0].addItem("#", "", 60, "right", "Customer Services", 3);

//Sub Menu for 2nd Main Menu Item ("About NCB"):
	menus[1] = new menu(160, "vertical", 0, 0, -5, 30, "#808080", "#000099", "verdana", 8, "regular", 
		"regular", "white", "white", 0, "gray", 2, 0, false, true, false, false, 0, false, 4, 4, "black");
	menus[1].addItem("corp.htm", "", 22, "left", "Corporate Profile", 0);
	menus[1].addItem("banking.htm", "", 22, "left", "Banking with NCB", 0);
	menus[1].addItem("financial.htm", "", 22, "left", "Financial Statements", 0);
	menus[1].addItem("svg.htm", "", 22, "left", "About SVG", 0);
	menus[1].addItem("history.htm", "", 22, "left", "History of NCB", 0);
	menus[1].addItem("news.htm", "", 22, "left", "News and Events", 0);

//Sub Menu for 2nd Main Menu Item ("Professional Products and Services"):
	menus[2] = new menu(160, "vertical", 0, 0, -5, 0, "#808080", "#000099", "verdana", 8, "regular", 
		"regular", "white", "white", 0, "gray", 2, 0, false, true, false, false, 0, false, 4, 4, "black");
	menus[2].addItem("deposit.htm", "", 22, "left", "Deposit Services", 0);
	menus[2].addItem("lending.htm", "", 22, "left", "Lending Services", 0);
	menus[2].addItem("card.htm", "", 22, "left", "Card Services", 0);
	menus[2].addItem("invest.htm", "", 22, "left", "Investment Services", 0);
	menus[2].addItem("forex.htm", "", 22, "left", "Foreign Exchange Services", 0);
	menus[2].addItem("other.htm", "", 22, "left", "Other Services", 0);

//Sub Menu for 2nd Main Menu Item ("Customer Services"):
	menus[3] = new menu(160, "vertical", 0, 0, -5, 0, "#808080", "#000099", "verdana", 8, "regular", 
		"regular", "white", "white", 0, "gray", 2, 0, false, true, false, false, 0, false, 4, 4, "black");
	menus[3].addItem("contact.htm", "", 22, "left", "Contact NCB", 0);
	menus[3].addItem("service.htm", "", 22, "left", "Customer Support", 0);
	menus[3].addItem("investor.htm", "", 22, "left", "Investor Resources", 0);
	menus[3].addItem("privacy.htm", "", 22, "left", "Privacy and Security", 0);
	


} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.