//this is a blank menu so the other menus leave when you mouse over (labeled "blank")
document.writeln("<div id='blank' onmouseover='menuMouseover(event)'>");
document.writeln("</div>");

//these are the main menus (labeled myMenuX according to menu location)
document.writeln("<div id='myMenu1' class='menu' onmouseover='menuMouseover(event)'>");
document.writeln("    <a class='menuItem' href='Tesoro.asp'>Tesoro</a>");
document.writeln("    <a class='menuItem' href='OldPalm.asp'>Old Palm Golf Club</a>");
document.writeln("    <a class='menuItem' href='OldMarsh.asp'>Old Marsh Golf Club</a>");
document.writeln("    <a class='menuItem' href='Watersong.asp'>Watersong</a>");
document.writeln("    <a class='menuItem' href='Loxahatchee.asp'>Loxahatchee Club</a>");
document.writeln("</div>")
document.writeln("<div id='myMenu2' class='menu' onmouseover='menuMouseover(event)'>");
document.writeln("    <a class='menuItem' href='bellaterra.asp'>Bella Terra at Old Palm Golf Club</a>");
document.writeln("    <a class='menuItem' href='Hamilton.asp'>Hamilton at Old Marsh Golf Club</a>");
document.writeln("    <a class='menuItem' href='Montebello.asp'>Montebello at Tesoro</a>");
document.writeln("    <a class='menuItem' href='castellina.asp'>Castellina at Tesoro</a>");
document.writeln("</div>");


//these are the submenus for each main menu (labeled myMenuX.X according to menu location)
//document.writeln("<div id='myMenu2.1' class='menu' onmouseover='menuMouseover(event)'>");
//document.writeln("    <a class='menuItem' href='AcquisitionDevelopment.asp'>Acquisition & Development</a>");
//document.writeln("    <a class='menuItem' href='PropertyOwnersJointVentures.asp'>Property Owners &<br /> Joint Ventures</a>");
//document.writeln("    <a class='menuItem' href='ProjectsGallery.asp'>Projects Gallery</a>");
//document.writeln("</div>");
