<!-- Begin HORIZONTAL CSS DROP MENU VER 1.50 2008

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

var showtop		= "no"		//  SHOW TOP MENU IMAGE
var showimage		= "no"		//  SHOW BOTTOM MENU IMAGE


document.write('<div id="menulocation" class="printhide">');
   if (showtop == "yes") {
document.write('<img src="picts/menu-top.jpg" width="150" height="125" class="menutop"></a><br>');
}
document.write('<table cellpadding="0" cellspacing="0" border="0" width="150"><tr><td class="topmargin">');
document.write('<ul id="top-nav">');


// START MENU LINKS - EDIT BELOW THIS AREA

document.write('  <li class="menuT"><a href="index.html">Home</a></li>');


document.write('  <li class="menuT"><a href="index.html"<a href="index.html" class="parentM">Communities</a>');
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="/daley/daley.htm">Daley Ranch</a></li>');
document.write('      <li><a href="/divide/index.html">Divide Ranch &amp; Club</a></li>');
document.write('      <li><a href="/mahogany/mahogany.htm">Mahogany</a></li>');
document.write('      <li><a href="/maverick/maverick.htm">Maverick</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="index.html"<a href="index.html" class="parentM">Company</a>'); 
document.write('    <ul id="sub-nav">');
document.write('      <li><a href="about.htm">About Us</a></li>');
document.write('      <li><a href="vision.htm">Vision</a></li>');
document.write('      <li><a href="logo.htm">Logo</a></li>');
//      document.write('      <li><a href="http://eqresorts.com/time.html">TIme</a></li>');
document.write('      <li><a href="contact.htm">Contact Us</a></li>');
document.write('    </ul>');
document.write('  </li>');

document.write('  <li class="menuT"><a href="news.htm">News</a></li>');
document.write('  <li class="menuT"><a href="contact.htm">Contact Us</a></li>');
document.write('  <li class="menuT"><a href="email-signup.htm">Email Newsletters</a></li>');

// MENU SEPARATOR - COMMENTED OUT
// document.write('<li class="menuseparator"></li>');

// END LINKS //

document.write('</ul>');
document.write('</td></tr><tr><td align="center">');

// START MENU IMAGE

   if (showimage == "yes") {
document.write('<br><br><a href="index.html"><img src="picts/menu-image.jpg" width="150" height="75" border="0" class="borders-menuimage"></a><br><br><br>');
}


document.write('</td></tr></table>');
document.write('</div>');

//  End -->


// YOU DO NOT NEED TO EDIT BELOW THIS LINE

function IEHoverPseudo() {

	var navItems = document.getElementById("top-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuT") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuT"; }
		}
	}

}
window.onload = IEHoverPseudo;