function init()
{
	//Main Menu items:
	menus[0] = new menu(30, "horizontal", 170, 3, -40, -2, "img:images/dolphin_bg.gif", "img:images/background2.gif", "Verdana,Helvetica", 10, 
		"normal", "bold", "White", "white", 0, "gray", 2, "rollover:images/tri-down1.gif:images/tri-down2.gif", false, false, true, true, 12, true, 10, 14, "black");
	menus[0].addItem("Intro_Home.htm", "main", 80, "center", "Home", 0);
	menus[0].addItem("AboutUs_Home.htm", "main", 110, "center", "About Us", 1);
	menus[0].addItem("Ministries_Home.htm", "main", 110, "center", "Ministries", 2);
	menus[0].addItem("Multimedia_Home.htm", "main", 110, "center", "Multimedia", 3);
	menus[0].addItem("Calendar/webcal.html", "main", 110, "center", "Calendar", 0);
	menus[0].addItem("ContactUs_Home.htm", "main", 110, "center", "Contact Us", 0);
	menus[0].floatMenu(1024, 768, 10, 0);

//Sub Menu for 2nd Main Menu Item ("About Us"):
	menus[1] = new menu(29, "horizontal", 0, 0, 0, 0, "img:images/dolphin_bg.gif", "#0000A0", "Verdana,Helvetica", 8, "bold", 
		"bold", "white", "Red", 1, "gray", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, true, 10, true, 4, 4, "black");
	menus[1].addItem("WhatWeBelieve.htm", "main", 81, "center", "What We Believe", 0);
	menus[1].addItem("History.htm", "main", 81, "center", "Church History", 0);
	menus[1].addItem("Church_Leadership.htm", "main", 90, "center", "Church Leadership", 0);
	
//Sub Menu for 3rd Main Menu Item ("Ministries"):
	menus[2] = new menu(29, "horizontal", 0, 0, 0, 0, "img:images/dolphin_bg.gif", "#0000A0", "Verdana,Helvetica", 8, "bold", 
		"bold", "white", "red", 1, "gray", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "black");
	menus[2].addItem("Missions.htm", "main", 66, "center", "Missions", 0);
	menus[2].addItem("Music.htm", "main", 63, "center", "Music", 0);
	menus[2].addItem("Men.htm", "main", 53, "center", "Men", 0);
	menus[2].addItem("Women.htm", "main", 58, "center", "Women", 0);
	menus[2].addItem("Students.htm", "main", 66, "center", "Students", 0);

//Sub Menu for 4rd Main Menu Item ("Multimedia"):
	menus[3] = new menu(29, "horizontal", 0, 0, 0, 0, "img:images/dolphin_bg.gif", "#0000A0", "Verdana,Helvetica", 8, "bold", 
		"bold", "white", "red", 1, "gray", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, false, 0, true, 4, 4, "black");
	menus[3].addItem("Pastors_Sermons.htm", "main", 85, "center", "Pastor Sermons", 0);
	menus[3].addItem("Church_Pictures.htm", "main", 85, "center", "Church Pictures", 0);
	
} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.