         function init()
{
	//Main Menu items:
	menus[0] = new menu(22,"horizontal", -18, 2, 0, 0, "#CACAFF", "#0000A0", "Verdana,Helvetica", 8, 
		"bold", "bold", "black", "white", 1, "gray", 2, "rollover:images/tri-down1.gif:images/tri-down2.gif", 
		false, true, true, true, 12, true, 4, 4, "black");
	menus[0].addItem("home.htm", "mainframe", 52, "center", "Home", 0);
	menus[0].addItem("#", "", 168, "center", "About Little Riveria", 1);
	menus[0].addItem("#", "", 148, "center", "About The Area", 4);
	menus[0].addItem("#", "", 177, "center", "Availability Calender", 5);
	menus[0].addItem("reservations.htm", "mainframe", 151, "center", "Make Reservation", 0);
	menus[0].addItem("directions.htm", "mainframe", 72, "center", "Directions", 0);
     	menus[0].addItem("links.htm", "mainframe", 50, "center", "Links", 0);
	menus[0].addItem("email.htm", "mainframe", 76, "center", "Email Us", 0);
        menus[0].floatMenu(1024, 768, 10, 0);

//Sub Menu for 2nd Main Menu Item ("About Little Riveria"):
	menus[1] = new menu(160, "vertical", 0, 0, -5, -5, "#CACAFF", "#0000A0", "Verdana,Helvetica", 8, "bold", 
		"bold", "black", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[1].addItem("#", "", 16, "left", "Cottage", 2);
	menus[1].addItem("#", "", 16, "left", "Lodge", 3);
	menus[1].addItem("rates.htm", "mainframe", 16, "left", "Rates", 0);
	menus[1].addItem("reservations.htm", "mainframe", 16, "left", "Make Reservation", 0);

//Sub Menu for Sub Menu "Cottage":
	menus[2] = new menu(200, "vertical", 0, 0, 0, 0, "#E1E1E1", "black", "Verdana,Helvetica", 7.5, "bold", "bold", 
		"black", "white", 1, "gray", 2, 62, false, true, false, false, 0, true, 4, 4, "black");
	menus[2].addItem("cottage.htm", "mainframe", 16, "left", "Description", 0);
	menus[2].addItem("cottagepictures.htm", "mainframe", 16, "left", "Pictures of Cottage", 0);
	menus[2].addItem("http://www.homeawayconnect.com/calender.aspx?propertyid=435556", "mainframe", 16, "left", "Availability Calendar", 0);
	
//Sub Menu for Sub Menu "Lodge":
	menus[3] = new menu(200, "vertical", 0, 0, 0, 0, "#E1E1E1", "black", "Verdana,Helvetica", 7.5, "bold", "bold", 
		"black", "white", 1, "gray", 2, 62, false, true, false, false, 0, true, 4, 4, "black");
	menus[3].addItem("lodge.htm", "mainframe", 16, "left", "Description", 0);
	menus[3].addItem("lodgepictures.htm", "mainframe", 16, "left", "Pictures of Lodge", 0);
	menus[3].addItem("http://www.homeawayconnect.com/calender.aspx?propertyid=439963", "mainframe", 16, "left", "Availability Calendar", 0);
	
//Sub Menu for 3rd Main Menu Item ("About The Area"):
	menus[4] = new menu(130, "vertical", 0, 0, 0, 0, "#CACAFF", "#0000A0", "Verdana,Helvetica", 8, "bold", 
		"bold", "black", "white", 1, "gray", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, 
		true, false, false, 0, true, 4, 4, "black");
	menus[4].addItem("history.htm", "mainframe", 16, "left", "History", 0);
	menus[4].addItem("attractions.htm", "mainframe", 16, "left", "Attractions", 0);
	menus[4].addItem("events.htm", "mainframe", 16, "left", "Events", 0);
	menus[4].addItem("pictures.htm", "mainframe", 16, "left", "Pictures",0);

//Sub Menu for 4th Main Menu Item ("Availability Calendar"):
	menus[5] = new menu(130, "vertical", 0, 0, 0, 0, "#CACAFF", "#0000A0", "Verdana,Helvetica", 8, "bold", 
		"bold", "black", "white", 1, "gray", 2, "rollover:images/tri-right1.gif:images/tri-right2.gif", false, 
		true, false, false, 0, true, 4, 4, "black");
	menus[5].addItem("http://www.homeawayconnect.com/calender.aspx?propertyid=435556", "mainframe", 16, "left", "Cottage", 0);
	menus[5].addItem("http://www.homeawayconnect.com/calender.aspx?propertyid=439963", "mainframe", 16, "left", "Lodge", 0);


} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.

