function init()
{
		// "rollover:images/tri-right1.gif:images/tri-right2.gif"
		// "img:images/BtnBkgrnd.jpg"
		// Main Menu items:
		// Prev colors #44446b & #ccc9b7
		// Blue to match balloon #3e528d
		// VERY COMPLIMENTARY #084067 (darker)
		// VERY COMPLIMENTARY #0a4874 (medium)
		// VERY COMPLIMENTARY #0a4e7f (lighter)
		// OFFSE #c8c6b8
		// offsetLeft works in both IE & Netscape!!!
	var x = document.getElementById("container").offsetLeft;
	menus[0] = new menu(30, "horizontal", +x, 0, 0, 0, "#084067", "#c8c6b8", "Tahoma,Verdana,Helvetica",10, 
		"bold", "italic", "white", "black", 1, "black", 2, "rollover:images/tri-down2.gif:images/tri-down2.gif", false, true, true, true,5, true, 4, 4, "black");
	menus[0].addItem("index.htm", "", 100, "center", "  Welcome", 0);
	menus[0].addItem("aboutus.htm", "", 160, "center", "  About J.R. & Team", 0);
	menus[0].addItem("mylistings.htm", "", 140, "center", "  Current Listings", 0);
	menus[0].addItem("testimonials.htm", "", 100, "center", "  Testimonials", 0);
	menus[0].addItem("contactus.htm", "", 100, "center", "  Contact Us", 0);
	menus[0].addItem("#", "", 195, "center", "Community Information", 2);

		// WATCH THE ORDER HERE, to prevent the second line of the main menu from overwriting /
		// hiding the vertical sub-menu of Community Information!!!
	menus[1] = new menu(30, "horizontal", +x + 402, 30, 0, 0, "#084067", "#c8c6b8", "Tahoma,Verdana,Helvetica",10, "bold", "italic", "white", "black", 1, "black", 2, "rollover:images/tri-down1.gif:images/tri-down2.gif", false, true, true, true,5, true, 4, 4, "black");
	menus[1].addItem("continuinged.htm", "", 140, "center", "  Continuing Ed", 0);
	menus[1].addItem("referrals.htm", "", 160, "center", "  Business Referrals", 0);
	
	menus[2] = new menu(220, "vertical", 0, 0, 0, 0, "#084067", "#c8c6b8", "Tahoma,Verdana,Helvetica", 9,
	"bold", "italic", "white", "black", 1, "black", 2,"rollover:images/tri-right1.gif:images/tri-right2.gif", false, true, false, true, 6, true, 4, 4, "black");
	menus[2].addItem("http://www.ccisd.net", "", 22, "left", "Schools - CCISD", 0);
	menus[2].addItem("http://www.har.com/school/search/quicksearch.asp?siteType=FCWS&cid=1690", "", 22, "left", "Schools - Find & Compare", 0);
	menus[2].addItem("http://www.kemah.net", "", 22, "left", "Kemah", 0);
	menus[2].addItem("http://www.galveston.com", "", 22, "left", "Galveston", 0);
	menus[2].addItem("http://www.moodygardens.com", "", 22, "left", "Galveston - Moody Gardens", 0);
	menus[2].addItem("http://www.spacecenter.org", "", 22, "left", "Johnson Space Center", 0);
	menus[2].addItem("http://www.chron.com/disp/story.mpl/special/05/golfguide/3093257.html", "", 22, "left", "Golf Locator", 0);

	// MAKE SURE THESE ASSIGNMENTS FOLLOW THE DECLARATION OF ALL ARRAY ITEMS
	// --> Netscape will not display certain menu items & attributes if you don't!!!
	// id works well too!  Notice that the property is 'className', not 'class'!
	// Assigning an id simply so that I can "reposition" the menu in common.js TL_resize()!
menus[0].main.id = "MMenu";
menus[0].shadow.id = "MMenuShadow";
menus[0].iframe.id = "MMenuI";
menus[0].siframe.id = "MMenuIS";
	// id works well too!  Notice that the property is 'className', not 'class'!
	// I use this class to suppress PRINTING of menus ...
menus[0].main.className = "menus";
menus[0].shadow.className = "menus";
menus[0].iframe.className = "menus";
menus[0].siframe.className = "menus";

	// Assigning an id simply so that I can "reposition" the menu in common.js TL_resize()!
menus[1].main.id = "MMenu2";
menus[1].shadow.id = "MMenuShadow2";
menus[1].iframe.id = "MMenuI2";
menus[1].siframe.id = "MMenuIS2";
	// I use this class to suppress PRINTING of menus ...
menus[1].main.className = "menus";
menus[1].shadow.className = "menus";
menus[1].iframe.className = "menus";
menus[1].siframe.className = "menus";
	// Make sure menus[1] displays OVER TOP OF menus[2] (the second horizontal menu)!!!
//menus[1].main.zIndex = 10000;
//menus[1].shadow.zIndex = 10000;
//menus[1].iframe.zIndex = 10000;
//menus[1].siframe.zIndex = 10000;
	
} //OUTER CLOSING BRACKET. EVERYTHING ADDED MUST BE ABOVE THIS LINE.