function init()
{
	//Main Menu items:
	menus[0] = new menu(18, "horizontal", 172, 138, -2, -2, "#339933", "#66CC00", "Verdana,Helvetica", 9, 
		"bold", "bold", "black", "white", 1, "gray", 2, "rollover:images/tri-down1.gif:images/tri-down2.gif", false, true, true, true, 27, true, 4, 4, "black");
	menus[0].addItem("index.htm", "", 80, "right", "Home", 0);
	menus[0].addItem("#", "", 140, "center", "Accommodations", 1);
	menus[0].addItem("rate.htm", "", 80, "right", "Rates", 0);
	menus[0].addItem("specials.htm", "", 80, "right", "Specials", 0);
	menus[0].addItem("direction.htm", "", 105, "right", "Directions", 0);
	menus[0].addItem("comments.htm", "", 120, "right", "Comments", 0);
	

//Sub Menu for 2nd Main Menu Item ("Accommodations"):
	menus[1] = new menu(85, "vertical", 0, 0, -5, -5, "#339933", "#66cc00", "Verdana,Helvetica", 9, "bold", 
		"bold", "black", "white", 1, "gray", 2, 62, false, true, false, true, 6, true, 4, 4, "black");
	menus[1].addItem("accommodation.htm", "", 22, "left", "Overview", 0);
	menus[1].addItem("unit1.htm", "", 22, "left", "Unit 1", 0);
	menus[1].addItem("unit2.htm", "", 22, "left", "Unit 2", 0);
	menus[1].addItem("unit3.htm", "", 22, "left", "Unit 3", 0);
	menus[1].addItem("unit4.htm", "", 22, "left", "Unit 4", 0);
	menus[1].addItem("unit5.htm", "", 22, "left", "Unit 5", 0);
	menus[1].addItem("unit6.htm", "", 22, "left", "Unit 6", 0);
	
// for an alert box:	menus[4].addItem("javascript:alert('Test - had to try this just to see if I could make it work')", "", 22, "left", "Java Alert", 0);
	

	
} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.