<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// USE lowercase FOR ALL OPTIONS ONLY

//var showimage1		= "yes"		//  SHOW FIRST SIDEBAR IMAGE
//var showimage2		= "yes"		//  SHOW SECOND SIDEBAR IMAGE
//var linkstop 		= "no" 		//  START LINKS AT THE VERY TOP

// Code for getting current month
//var d=new Date()
//var day=d.getDate()
//var month=d.getMonth() + 1
//var year=d.getFullYear()

document.write('<DIV id="menulocation" style="z-index: 2;" >');
document.write('<TABLE cellpadding="0"  cellspacing="0" border="0" width="100%" align="center"><tr><td >');
//   if (linkstop == "no") {
//document.write('<img src="picts/menu-top12b.gif" width="152" height="42" class="menutrans"><br>');
//}
document.write('<ul id="top-nav">');

// START MENU LINKS - EDIT BELOW THIS AREA

document.write('  <li class="menuT"><a href="index.php">Home</a></li> ');
document.write('  <li class="menuT"><a href="page.php?page_id=2">Rooms</a>');
/*document.write(' <ul id="sub-nav">');
document.write('  <li><a href="page.php?page_id=24">Room Types</a></li>');
document.write('  <li><a href="page.php?page_id=25">Amenities</a></li>');
document.write('  <li><a href="page.php?page_id=26">Utility</a></li>');
document.write(' </ul>');*/
document.write('</li>');


document.write('  <li class="menuT"><a href="page.php?page_id=3">About Us</a>');
document.write('</li>');


/*document.write('  <li class="menuT"><a href="page.php?page_id=4">Staff</a>');
document.write('</li>');*/

document.write('  <li class="menuT"><a href="page.php?page_id=5">Map/Direction</a>');
document.write('</li>');

/*document.write('  <li class="menuT"><a href="refferals.php">Refferals</a>');
document.write('</li>');*/

document.write('  <li class="menuT"><a href="contact_us.php">Contact Us</a>');
document.write('</li>');
document.write('</li>');

/*document.write('  <li class="menuT"><a href="https://www.ezeereservation.com/rez/jasminegarden/twoweek_search.php">Online Reservation</a>');
document.write('</li>');*/

document.write('  <li class="menuT"><a href="page.php?page_id=18">Local Events</a>');
document.write('</li>');
// END LINKS //
document.write('</ul>');
document.write('</td></tr><tr><td align="center">');


// START MENU IMAGES


//   if (showimage1 == "yes") {
//document.write('<br><br><a href="ballwinners_comp.htm"><img src="picts/menu-picture-1.jpg" width="140" height="140" alt="Read about our egert logo story" border="0" class="borders"></a><br><br><br>');
//}
//   if (showimage2 == "yes") {
//document.write('<a href="egert.html"><img src="picts/menu-picture-2.jpg" width="140" height="140" alt="Competition Ball Winners" border="0" class="borders"></a><br><br>');
//}
document.write('</td></tr></table></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;

