//Chapel Hill menu parameters:  (size, vertical or horizontal, h coord, v coord, h offset, v offset, bkgrnd color or image (#552B2C), over bkgrnd color, font, font size, font style, font style, text color (#DDE5C6), over text color (#FFFFFF), border size, padding, sub-menu arrow, menu open on mouse click?, divider?, transition?, transition type 1-23, shadow?, h shadow distance, v shadow distance, shadow color)
function init()
{
	menus[0] = new menu(27, "horizontal", 194, 110, 0, 0, "img:images/nav.gif", "img:images/nav.gif", "Georgia,Helvetica", 9, "bold", 
		"bold", "#DDE5C6", "#FFFFFF", 0, "#552B2C", 0, "rollover:images/spacer.gif:images/spacer.gif", false, true, true, true, 0, false, 0, 0, "#000000");
	menus[0].addItem("index.html", "", 36, "center", "rollover:images/nav_home.gif:images/nav_home-over.gif", 0);
	menus[0].addItem("community_founder.html", "", 120, "center", "rollover:images/nav_commfounder.gif:images/nav_commfounder-over.gif", 0);
    menus[0].addItem("chapelhill.html", "", 78, "center", "rollover:images/nav_chapelhill.gif:images/nav_chapelhill-over.gif", 1);
  	menus[0].addItem("recreation.html", "", 74, "center", "rollover:images/nav_recreation.gif:images/nav_recreation-over.gif", 2);
	menus[0].addItem("architecture.html", "", 56, "center", "rollover:images/nav_homes.gif:images/nav_homes-over.gif", 3);
	menus[0].addItem("historicmckinney.html", "", 72, "center", "rollover:images/nav_mckinney.gif:images/nav_mckinney-over.gif", 4);
	menus[0].addItem("contact.php", "", 63, "center", "rollover:images/nav_contactus.gif:images/nav_contactus-over.gif", 0);
	menus[0].floatMenu(800, 600, 0, 0);  //resolution, v-h offset, 0h, 1v, 2both
	

    //Chapel Hill sub-nav
	menus[1] = new menu(150, "vertical", 0, 0, -1, 1, "img:images/nav.gif", "img:images/nav.gif", "Georgia,Helvetica", 8, "bold", 
		"bold", "#DDE5C6", "#FFFFFF", 2, "#552B2C", 4, '>>', false, true, false, true, 0, true, 1, 1, "#BDC6A1");
	menus[1].addItem("siteplan.html", "", 20, "left", "Site Plan", 0);
	menus[1].addItem("location.html", "", 20, "left", "Location Map", 0);
	menus[1].addItem("newsroom.html", "", 20, "left", "Newsroom", 0);

	//Recreation sub-nav
	menus[2] = new menu(260, "vertical", 0, 0, -1, 1, "img:images/nav.gif", "img:images/nav.gif", "Georgia,Helvetica", 8, "bold", 
		"bold", "#DDE5C6", "#FFFFFF", 2, "#552B2C", 4, '>>', false, true, false, true, 1, true, 1, 1, "#BDC6A1");
	menus[2].addItem("nature.html", "", 20, "left", "Nature", 0);
	menus[2].addItem("location_shop.html", "", 20, "left", "Shopping & Entertainment", 0);
	
	//Homes sub-nav
	menus[3] = new menu(110, "vertical", 0, 0, -1, 1, "img:images/nav.gif", "img:images/nav.gif", "Georgia,Helvetica", 8, "bold", 
		"bold", "#DDE5C6", "#FFFFFF", 2, "#552B2C", 4, '>>', false, true, false, true, 0, true, 1, 1, "#BDC6A1");
	menus[3].addItem("elegance.html", "", 20, "left", "Elegance", 0);
	menus[3].addItem("builders.html", "", 20, "left", "Builders", 5);
	menus[3].addItem("hoa.html", "", 20, "left", "HOA", 0);

	//Homes-Builders sub-sub-nav
	menus[5] = new menu(250, "vertical", 0, 0, -1, 1, "img:images/nav.gif", "img:images/nav.gif", "Georgia,Helvetica", 8, "bold", 
		"bold", "#DDE5C6", "#FFFFFF", 2, "#552B2C", 4, '>>', false, true, false, true, 0, true, 1, 1, "#BDC6A1");
	menus[5].addItem("builders_cambridge.html", "", 20, "left", "Cambridge Homes", 0);
	menus[5].addItem("builders_harmony.html", "", 20, "left", "Harmony Homes", 0);

	//McKinney sub-sub-nav
	menus[4] = new menu(150, "vertical", 0, 0, -1, 1, "img:images/nav.gif", "img:images/nav.gif", "Georgia,Helvetica", 8, "bold", 
		"bold", "#DDE5C6", "#FFFFFF", 2, "#552B2C", 4, '>>', false, true, false, true, 0, true, 1, 1, "#BDC6A1");
	menus[4].addItem("culture.html", "", 25, "left", "Culture", 0);
	menus[4].addItem("convenience.html", "", 25, "left", "Convenience", 0);
	menus[4].addItem("schools.html", "", 20, "left", "Schools", 0);
	menus[4].addItem("location.html", "", 20, "left", "Location Map", 0);
	
}
