function init()
{
	//Main Menu items:
	menus[0] = new menu(25, "horizontal", 35, 165, 15, -2, "#8CA3BD", "#FFFFFF", "arial", 13, 
		"bold", "bold", "#FFFFFF", "#567294", 1, "#E8ECF2", 2, "", false, true, true, true, 12, true, 2, 2, "");
	menus[0].addItem("index.html", "", 176, "center", "home", 0);
	menus[0].addItem("about.html", "", 175, "center", "about", 0);
	menus[0].addItem("contact.html", "", 177, "center", "contact", 0);
	menus[0].addItem("products.html", "", 177, "center", "products", 1);

//Sub Menu for 4th Main Menu Item ("about"):
	menus[1] = new menu(130, "vertical", 0, 0, -5, -5, "#CCCCCC", "#8CA3BD", "arial", 9, "bold", 
		"bold", "#567294", "#FFFFFF", 1, "#FFFFFF", 2, 62, false, true, false, true, 6, true, 2, 2, "#567294");
	menus[1].addItem("products_industrial.html", "", 22, "left", "industrial", 0);
	menus[1].addItem("products_waterborne.html", "", 22, "left", "waterborne", 0);
	menus[1].addItem("products_concrete.html", "", 22, "left", "concrete", 0);
	menus[1].addItem("products_maintenance.html", "", 22, "left", "maintenance", 0);
	menus[1].addItem("products_recreational.html", "", 22, "left", "recreational", 0);

} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.
