function init()
{
	//Main Menu items:
	menus[0] = new menu(22, "horizontal", 400, 90, 1, 1, "#d9dcc1", "#F1F2E2", "Verdana,Helvetica", 10, 
		"bold", "bold", "#7b2d00", "#003868", 0, "#F1F2E2", 2, "", false, true, true, false, 0, false, 0, 0, "#d9dcc1");
	menus[0].addItem("#", "", 90, "center", "About LBF", 1);
	menus[0].addItem("#", "", 100, "center", "Services", 2);
	menus[0].addItem("investments.htm", "", 200, "center", "Investment Performance", 0);
	menus[0].addItem("links.htm", "", 75, "center", "Links", 0);
	menus[0].floatMenu(1024, 768, 10, 0);

//Sub Menu for "About LBF"):
	menus[1] = new menu(35, "horizontal", 0, 0, 0, 0, "#d9dcc1", "#d9dcc1", "Verdana,Helvetica", 9, "bold", 
		"bold", "#7b2d00", "#61663D", 1, "#d9dcc1", 2, 62, false, true, false, true, 6, false, 0, 0, "black");
	menus[1].addItem("facts.htm", "", 100, "center", "Foundation Facts", 0);
	menus[1].addItem("staff.htm", "", 80, "center", "Staff", 0);
	menus[1].addItem("trustees.htm", "", 80, "center", "Trustees", 0);
	menus[1].addItem("finstate.htm", "", 100, "center", "Financial Statement", 0);

//Sub Menu for "Planned Giving":
	menus[2] = new menu(35, "horizontal", 0, 0, 0, 0, "#d9dcc1", "#d9dcc1", "Verdana,Helvetica", 9, "bold", 
		"bold", "#7b2d00", "#61663D", 1, "#d9dcc1", 2, 62, false, true, false, true, 6, false, 0, 0, "black");
	menus[2].addItem("churches.htm", "", 100, "center", "Churches & Institutions", 0);
	menus[2].addItem("individuals.htm", "", 100, "center", "Individuals", 0);

} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.