function init()
{
	//Main Menu items:
	menus[0] = new menu(22, "horizontal", 345, 75, 0, 48, "#540232", "#540232", "", 1, 
		"", "", "", "", 0, "", 0, "", false, true, true, true, 12, true, 0, 0, "");
	menus[0].addItem("index.htm", "", 80, "", "rollover:images/home.jpg:images/home1.jpg", 0);
	menus[0].addItem("#", "", 79, "", "rollover:images/menu.jpg:images/menu1.jpg", 1);
	menus[0].addItem("wine_list.htm", "", 69, "", "rollover:images/wine_list.jpg:images/wine_list1.jpg", 0);
	menus[0].addItem("gift.htm", "", 74, "", "rollover:images/gift.jpg:images/gift1.jpg", 0);
	menus[0].addItem("contact.htm", "", 69, "", "rollover:images/contactus.jpg:images/contactus1.jpg", 0);
	menus[0].addItem("location.htm", "", 64, "", "rollover:images/location.jpg:images/location1.jpg", 0);
	
//Sub Menu for 1st Main Menu Item (""):
	menus[1] = new menu(135, "vertical", 0, 0, 0, 0, "#eac9a8", "#540232", "arial", 8, "bold", 
		"bold", "#540232", "#eac9a8", 1, "tan", 2, "rollover:images/tri1.jpg:images/tri2.jpg", false, true, false, false, 0, true, 0, 0, "");
	menus[1].addItem("dining.htm", "", 22, "left", "Dining", 0);
	menus[1].addItem("calabria_s.htm", "", 22, "left", "Calabria Specials", 0);
	menus[1].addItem("", "", 22, "left", "Takeout / Delivery", 2);

//Sub Menu for Sub Menu "":
	menus[2] = new menu(130, "vertical", 0, 0, 0, 0, "#eac9a8", "#540232", "arial", 8, "bold", "bold", "#540232", "#eac9a8", 1, "tan", 2, 62, false, true, false, false, 0, true, 0, 0, "");
	menus[2].addItem("takeout.htm", "", 22, "left", "Take out Menu", 0);


} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.