function init()
{
	//Main Menu items:
	menus[0] = new menu(25, "horizontal", 155, 125, -1, -1, "#D6DDF8", "#768BC1", "Georgia", 10, "regular", 
		"regular", "black", "white", 1, "black", 3, "rollover:images/tri-down1.gif:images/tri-down2.gif", false, true, true, false, 0, true, 2, 2, "gray");
	menus[0].addItem("Index.htm", "", 60, "center", "Home", 0);
	menus[0].addItem("", "", 110, "center", "About Us", 1);
	menus[0].addItem("", "", 100, "center", "Projects", 2);
	menus[0].addItem("", "", 115, "center", "Contact Us", 3);
	
//Sub Menu for 2nd Main Menu Item ("About Us"):
	menus[1] = new menu(150, "vertical", 0, 0, -5, -5, "#D6DDF8", "#768BC1", "Georgia", 10, "regular", 
		"", "black", "white", 1, "black", 2, 0, false, true, false, false, 0, false, 4, 4, "black");
	menus[1].addItem("Mission.htm", "", 20, "left", "Mission Statement", 0);
	menus[1].addItem("Corporate.htm", "", 20, "left", "Corporate Profile", 0);
	menus[1].addItem("Careers.htm", "", 20, "left", "Careers", 0);
	
//Sub Menu for 3rd Main Menu Item ("Projects"):
	menus[2] = new menu(170, "vertical", 0, 0, -5, -5, "#D6DDF8", "#768BC1", "Georgia", 10, "regular", 
		"", "black", "white", 1, "black", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, false, 4, 4, "black");
	menus[2].addItem("OngoingProjects.asp", "", 20, "left", "Ongoing Projects", 0);
	menus[2].addItem("ProjectsArchive.asp", "", 20, "left", "Projects Archive", 0);
	menus[2].addItem("Fields.htm", "", 20, "left", "Fields of Service", 0);
	
//Sub Menu for 4th Main Menu Item ("Contact Us"):
	menus[3] = new menu(170, "vertical", 0, 0, -5, -5, "#D6DDF8", "#768BC1", "Georgia", 10, "regular", "", "black", "white", 1, "black", 2, 0, false, true, false, false, 0, false, 4, 4, "black");
	menus[3].addItem("ContactUs.htm", "", 20, "left", "Contact Information", 0);
	menus[3].addItem("StaffListing.asp", "", 20, "left", "Staff Listing", 0);


} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.