<!--

function bookmark(url, description)

{

//shown to netscape users

netscape="Click OK and then press CTRL+D to bookmark our site."



if (navigator.appName=='Microsoft Internet Explorer')

{

window.external.AddFavorite(url, description);

}

else if (navigator.appName=='Netscape')

{

alert(netscape);

}

}

function findOffset(objId){
   var elem = objId;
   var left = 0;
   var top = 0;

   while (elem.tagName!="BODY") {
   	left += elem.offsetLeft;
	top += elem.offsetTop;
	elem = elem.offsetParent;
   }
   
   return Array(left, top);
}

var handlerTimeOut = null;

function setMenu() {

	var navigationMenu = document.getElementById('NavigationMenu');
	var navigationImg = document.getElementById('navigationImg');
	var foffset = findOffset(navigationImg);
	//var divImg = document.getElementById("divImg");
	
	if (navigationMenu.runtimeStyle) {
	   navigationMenu.runtimeStyle.left = foffset[0]+10;
	   navigationMenu.runtimeStyle.top = foffset[1] + Number(navigationImg.offsetHeight);
	}

	navigationMenu.style.left = foffset[0]+10;
	navigationMenu.style.top = foffset[1] + Number(navigationImg.offsetHeight);
	//divImg.appendChild(navigationMenu);	

	navigationMenu.style.display = 'block';

}

function hideMenu() {

	var navigationMenu = document.getElementById('NavigationMenu');
	navigationMenu.style.display ='none';
}


function setTimeO() {
		handlerTimeOut = window.setTimeout("hideMenu()", 1000);	
}

function clearTimeO() {
			window.clearTimeout(handlerTimeOut);
}


document.write("<div id='NavigationMenu' style='display:none; position:absolute; width: 164px; border-width: thick ' >");
document.write("<table width='164px' border='0' cellpadding='3' cellspacing='1' bgcolor='#2D3136' onMouseOut='setTimeO()' onMouseOver='clearTimeO()'>");
/*document.write("  <tr>");
document.write("    <td bgcolor='#2D3136' class='calcTitle'>Navigation</td>");
document.write("  </tr>");
*/document.write("  <tr >");
document.write("    <td bgcolor='#D1D6E0' class='lmem'><a href='/overview.php'>Overview Of Loan And Mortgage Options</a></td>");
document.write("  </tr>");
document.write("  <tr>");
document.write("    <td bgcolor='#D1D6E0' class='lmem'><a href='/mortgage_financing.php'>Mortgage Financing With Extenuating Circumstances</a></td>");
document.write("  </tr>");
document.write("  <tr>");
document.write("    <td bgcolor='#D1D6E0' class='lmem'><a href='/definition_language.php'>MortRate.com Mortgage Definition Language</a></td>");
document.write("  </tr>");
document.write("  <tr>");
document.write("    <td bgcolor='#D1D6E0' class='lmem'><a href='/using_the_arm.php'>Using The ARM To Your Advantage</a></td>");
document.write("  </tr>");
document.write("  <tr>");
document.write("    <td bgcolor='#D1D6E0' class='lmem'><a href='/resource_links.php'>Mortrate resource links</a></td>");
document.write("  </tr>");
document.write("</table>");
document.write("</div>");
//-->