// JScript source code
sfHover = function() {
	var sfEls = document.getElementById("nav_menu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

<!--
function nav()
   {
   var w = document.jMenu.jMenuList.selectedIndex;
   var url_add = document.jMenu.jMenuList.options[w].value;
   window.location.href = url_add;
   }

function doRedirect(sType)
{
    if (sType.toUpperCase() == "LOGIN")
    {
		window.location = 'https://www5.mylimobiz.com/asaplimo/reservations/login.asp';
        return;
	}
	if (sType.toUpperCase() == "OPENACCOUNT")
    {
		window.location = 'openAccount.shtml';
        return;
	}
	if (sType.toUpperCase() == "RESERVATION")
    {
		window.location = 'OnlineReservation.shtml';
        return;
	}
	if (sType.toUpperCase() == "ONLINERESERVATION")
    {
		window.location = 'https://www5.mylimobiz.com/asaplimo/reservations/login.asp';
        return;
	}
	if (sType.toUpperCase() == "QUICKRESERVATION")
    {
		window.location = 'https://www5.mylimobiz.com/asaplimo/reservations/quickRes.asp?action=makeRes&step=0';
        return;
	}
	if (sType.toUpperCase() == "RATES")
    {
		window.location = 'https://www5.mylimobiz.com/asaplimo/reservations/rates.asp';
        return;
	}

}


//-->
