function init()
{
	//Main Menu items:
	menus[0] = new menu(125, "vertical", 0, 240, -1, -1, "#CACAFF", "#0000A0", "Verdana,Helvetica", 9, 
		"bold", "bold", "black", "white", 1, "gray", 2, "rollover:tri.gif:tri.gif", false, true, true, true, 12, true, 4, 4, "black");
	menus[0].addItem("http://www.hydrosolveinc.com/hydrosolve", "", 20, "center", "Home", 0);
	menus[0].addItem("services.htm", "", 20, "center", "Services", 0);
	menus[0].addItem("software.htm", "", 20, "center", "Software", 1);
	menus[0].addItem("links.htm", "", 20, "center", "Links", 2);
	menus[0].addItem("contact.htm", "", 20, "center", "Contact", 0);

//Sub Menu for 3rd Main Menu Item ("Software"):
	menus[1] = new menu(135, "vertical", 0, 0, -5, -5, "#CACAFF", "#0000A0", "Verdana,Helvetica", 9, "bold", 
		"bold", "black", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[1].addItem("software.htm", "", 20, "left", "Software Home", 0);
	menus[1].addItem("aqtesolv.htm", "", 20, "left", "AQTESOLV", 0);
	menus[1].addItem("modflowt.htm", "", 20, "left", "MODFLOWT", 0);

//Sub Menu for 4th Main Menu Item ("Links"):
	menus[2] = new menu(125, "vertical", 0, 0, -5, -5, "#CACAFF", "#0000A0", "Verdana,Helvetica", 9, "bold", 
		"bold", "black", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[2].addItem("links.htm", "", 20, "left", "Links Home", 0);
	menus[2].addItem("general_links.htm", "", 20, "left", "General", 0);
	menus[2].addItem("software_links.htm", "", 20, "left", "Software", 0);
	menus[2].addItem("workshop_links.htm", "", 20, "left", "Workshops", 0);
	menus[2].addItem("organization_links.htm", "", 20, "left", "Organizations", 0);
	menus[2].addItem("publication_links.htm", "", 20, "left", "Publications", 0);
	menus[2].addItem("university_links.htm", "", 20, "left", "Universities", 0);
	menus[2].addItem("agency_links.htm", "", 20, "left", "Agencies", 0);
	menus[2].addItem("equipment_links.htm", "", 20, "left", "Equipment", 0);

} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.