function init()
{
	//Main Menu items:
	menus[0] = new menu(20, "horizontal", 104, 150, 10, -5, "#000000", "#ffffff", "Arial", 8, "bold", "bold", "#ffffff", "#000000", 0, "gray", 2, "", false, false, true, true, 12, false, 4, 4, "black");
	menus[0].addItem("http://www.schryver.us/index.htm", "", 57, "center", "Home", 0);
	menus[0].addItem("#", "", 85, "center", "The Family", 1);
	menus[0].addItem("/house/", "", 105, "center", "Edwards House", 0);
	menus[0].addItem("../../cottage/", "", 99, "center", "The Cottage", 2);
	menus[0].addItem("#", "", 89, "center", "Diversions", 3);
	menus[0].addItem("#", "", 89, "center", "Genealogy", 4);
	menus[0].addItem("http://www.fourthcoastcreations.com/", "NEWWIN", 126, "center", "David's Business", 0);
	menus[0].addItem("#", "", 88, "center", "Contact Us", 5);
	menus[0].addItem("../../links.htm", "", 57, "center", "Links", 0);
	menus[0].floatMenu(1024, 768, 0, 0);

//Sub Menu for 2nd Main Menu Item ("Us"):
	menus[1] = new menu(135, "vertical", 0, 0, -5, -5, "#000000", "#ffffff", "Arial", 8, "bold", "bold", "#ffffff", "#000000", 0, "gray", 2, "", false, false, false, true, 12, false, 4, 4, "black");
	menus[1].addItem("/david/", "", 22, "left", "David", 0);
	menus[1].addItem("/marcia/", "", 22, "left", "Marcia", 0);
	menus[1].addItem("/kristin/", "", 22, "left", "Kristin", 0);
	menus[1].addItem("/davidjr/", "", 22, "left", "David Jr", 0);
	menus[1].addItem("/miranda/", "", 22, "left", "Miranda", 0);
	menus[1].addItem("/gavin/", "", 22, "left", "Gavin", 0);

//Sub Menu for 3rd Main Menu Item ("The Cottage"):
	menus[2] = new menu(185, "vertical", 0, 0, -5, -5, "#000000", "#ffffff", "Arial", 8, "bold", "bold", "#ffffff", "#000000", 0, "gray", 2, "", false, false, false, true, 12, false, 4, 4, "black");
	menus[2].addItem("/cottage/", "", 22, "left", "The cottage homepage", 0);
	menus[2].addItem("/cottage/2010/", "", 22, "left", "2010", 0);
	menus[2].addItem("/cottage/2009/", "", 22, "left", "2009", 0);	menus[2].addItem("/cottage/storm20080915/", "", 22, "left", "The storm of \'08", 0);
	menus[2].addItem("/cottage/2008/", "", 22, "left", "Construction \'08", 0);
	menus[2].addItem("/cottage/construction07/", "", 22, "left", "Construction \'07", 0);
	menus[2].addItem("/cottage/construction06/", "", 22, "left", "Constructon \'06", 0);
	menus[2].addItem("/cottage/construction05/", "", 22, "left", "Construction 2005", 0);
	menus[2].addItem("/cottage/storm20050801/", "", 22, "left", "The storm of \'05", 0);
	menus[2].addItem("/cottage/before/", "", 22, "left", "Before and after", 0);
	menus[2].addItem("/cottage/oldpics/", "", 22, "left", "Old family photos", 0);

//Sub Menu for 5th Main Menu Item ("Diversions"):
	menus[3] = new menu(135, "vertical", 0, 0, -5, -5, "#000000", "#ffffff", "Arial", 8, "bold", "bold", "#ffffff", "#000000", 0, "gray", 2, "", false, false, false, true, 12, false, 4, 4, "black");
	menus[3].addItem("/guitars/", "", 22, "left", "Guitars", 0);
	menus[3].addItem("/holidays/", "", 22, "left", "Holidays", 0);
	menus[3].addItem("/jam/", "", 22, "left", "Jam Group", 0);
	menus[3].addItem("/lighthouses/", "", 22, "left", "Lighthouses", 0);
	menus[3].addItem("/travel/", "", 22, "left", "Travel", 0);
	menus[3].addItem("/vehicles/", "", 22, "left", "Vehicles", 0);
	menus[3].addItem("../../waterfalls.html", "", 22, "left", "Waterfalls", 0);
	menus[3].addItem("/wine/", "", 22, "left", "Winemaking", 0);
	menus[3].addItem("/other/", "", 22, "left", "Other events", 0);
	menus[3].addItem("/camping/", "", 22, "left", "Camping", 0);
	menus[3].addItem("/bikes/", "", 22, "left", "Motorcycles", 0);

///Sub Menu for Genealogy:
	menus[4] = new menu(135, "vertical", 0, 0, -5, -5, "#000000", "#ffffff", "Arial", 8, "bold", "bold", "#ffffff", "#000000", 0, "gray", 2, "", false, false, false, true, 12, false, 4, 4, "black");
	menus[4].addItem("http://www.theschryvers.org/", "NEWWIN", 22, "left", "Schryver", 0);
	menus[4].addItem("http://knutty.theschryvers.org/", "NEWWIN", 22, "left", "Knutty", 0);
	menus[4].addItem("http://kelley.theschryvers.org/", "NEWWIN", 22, "left", "Kelley", 0);

//Sub Menu for Sub Menu Item ("Contact Us"):
	menus[5] = new menu(95, "vertical", 0, 0, -5, -5, "#000000", "#ffffff", "Arial", 8, "bold", "bold", "#ffffff", "#000000", 0, "gray", 2, "", false, false, false, true, 12, false, 4, 4, "black");
	menus[5].addItem("mailto:david@schryver.us", "", 22, "left", "E-mail David", 0);
	menus[5].addItem("mailto:marcia@schryver.us", "", 22, "left", "E-mail Marcia", 0);

} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.