function init()
{
	//Main Menu items:
	menus[0] = new menu(22, "horizontal", 2, 50, 2, 2, "#2c5490", "#78a5c8", "Verdana,Helvetica", 9, "bold", "bold", "white", "white", 1, "white", 2, "", false, true, true, false, 0, false, 0, 0, "black");
	menus[0].addItem("index.html", "", 108, "center", "Home", 0);
	menus[0].addItem("#", "", 150, "center", "Corporate", 1);
	menus[0].addItem("#", "", 200, "center", "Products and Services", 2);
	menus[0].addItem("#", "", 150, "center", "Technology", 3);
	menus[0].addItem("#", "", 150, "center", "Affiliates", 4);

//Sub Menu for 1st Main Menu Item ("Corporate"):
	menus[1] = new menu(145, "vertical", 0, 0, 0, 0, "#2c5490", "#78a5c8", "Verdana,Helvetica", 9, "bold", "bold", "white", "white", 1, "white", 2, "", false, true, false, true, 6, true, 4, 4, "black");
	menus[1].addItem("profile.shtml", "", 22, "left", "Company Profile", 0);
	menus[1].addItem("news.shtml", "", 22, "left", "Company News", 0);
	menus[1].addItem("contact.shtml", "", 22, "left", "Contact Us", 0);

//Sub Menu for 2nd Main Menu Item ("Products & Services"):
	menus[2] = new menu(195, "vertical", 0, 0, 0, 0, "#2c5490", "#78a5c8", "Verdana,Helvetica", 9, "bold", "bold", "white", "white", 1, "white", 2, "", false, true, false, true, 6, true, 4, 4, "black");
	menus[2].addItem("fintube.shtml", "", 22, "left", "Fintubes", 0);
	menus[2].addItem("coil.shtml", "", 22, "left", "Coated Copper Coil", 0);
	menus[2].addItem("headers.shtml", "", 22, "left", "Headers", 0);
	menus[2].addItem("absorbers.shtml", "", 22, "left", "Absorber Plates", 0);

//Sub Menu for 3rd Main Menu Item "Technology":
	menus[3] = new menu(145, "vertical", 0, 0, 0, 0, "#2c5490", "#78a5c8", "Verdana,Helvetica", 9, "bold", "bold", "white", "white", 1, "white", 2, "", false, true, false, true, 6, true, 4, 4, "black");
	menus[3].addItem("welding.shtml", "", 22, "left", "Fintube Products", 0);
	menus[3].addItem("plating.shtml", "", 22, "left", "Selective Surface", 0);

//Sub Menu for 4th Main Menu Item ("Affiliates"):
	menus[4] = new menu(145, "vertical", 0, 0, 0, 0, "#2c5490", "#78a5c8", "Verdana,Helvetica", 9, "bold", "bold", "white", "white", 1, "white", 2, "", false, true, false, true, 6, true, 4, 4, "black");
	menus[4].addItem("solar_links.shtml", "", 22, "left", "Solar Links", 0);

} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.