function init()
{
	//Main Menu items:
	menus[0] = new menu(22, "horizontal", 107, 152, -2, -2, "#ffffff", "tan", "Arial", 9, 
		"bold", "bold", "744710", "744710", 1, "744710", 2, "", false, true, true, true, 6, false, 4, 4, "black");
	menus[0].addItem("../index.htm", "", 70, "center", "Home", 0);
	menus[0].addItem("#", "", 70, "center", "About Us", 1);
	menus[0].addItem("#", "", 75, "center", "Schedules", 2);
	menus[0].addItem("#", "", 90, "center", "What's New", 3);
	menus[0].addItem("#", "", 70, "center", "Recipes", 4);
	menus[0].addItem("faq.htm", "", 65, "center", "FAQ", 0);
	menus[0].addItem("photos.htm", "", 90, "center", "Photo Gallery", 0);
	menus[0].addItem("links.htm", "", 65, "center", "Links", 0);
	menus[0].addItem("http://stoneturtlesbreadcrumbs.blogspot.com", "", 170, "center", "Bread Crumbs, our blog!", 0);
	menus[0].floatMenu(1024, 768, 10, 0);

//Sub Menu for 2nd Main Menu Item ("About Us"):
	menus[1] = new menu(135, "vertical", 0, 0, -5, -5, "#ffffff", "tan", "Arial", 9, "bold", 
		"bold", "744710", "744710", 1, "744710", 2, 62, false, true, false, true, 6, false, 4, 4, "black");
	menus[1].addItem("bios.htm", "", 22, "left", "Bios", 0);
	menus[1].addItem("aboutOven.htm", "", 22, "left", "Stone Turtle?", 0);
	menus[1].addItem("directions.htm", "", 22, "left", "Directions", 0);
	menus[1].addItem("contactUs.htm", "", 22, "left", "Contact Us", 0);	

//Sub Menu for 3rd Main Menu Item ("Schedules"):
	menus[2] = new menu(140, "vertical", 0, 0, 0, 0, "#ffffff", "tan", "Arial", 9, "bold", 
		"bold", "744710", "744710", 1, "744710", 2, 62, false, true, false, true, 5, false, 4, 4, "black");
	menus[2].addItem("classes.htm", "", 22, "left", "Cooking Classes", 0);
	menus[2].addItem("CommEvents.htm", "", 22, "left", "Community Events", 0);
	menus[2].addItem("otherEvents.htm", "", 22, "left", "Other Events", 0);

	
//Sub Menu for 4th Main Menu Item ("What's New"):
	menus[3] = new menu(140, "vertical", 0, 0, -5, -5, "#ffffff", "tan", "Arial", 9, "bold", 
		"bold", "744710", "744710", 1, "744710", 2, 62, false, true, false, true, 6, false, 4, 4, "black");
	menus[3].addItem("news.htm", "", 22, "left", "News", 0);
	menus[3].addItem("press.htm", "", 22, "left", "Press Releases", 0);
	menus[3].addItem("newsletter.htm", "", 22, "left", "Newsletter", 0);
	menus[3].addItem("industry.htm", "", 22, "left", "Industry News", 0);
	
	//Sub Menu for 5th Main Menu Item ("Recipes"):
	menus[4] = new menu(150, "vertical", 0, 0, -5, -5, "#ffffff", "tan", "Arial", 9, "bold", 
		"bold", "744710", "744710", 1, "744710", 2, 62, false, true, false, true, 6, false, 4, 4, "black");
	menus[4].addItem("recipeOmonth.htm", "", 22, "left", "Recipe of the Month", 0);
	menus[4].addItem("recipes.htm", "", 22, "left", "Recipes", 0);


} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.