// JavaScript Document

//Real Estate function neighborhood finder
function SubNav(e){
	if(e.selectedIndex == 0)
		{//do nothing
		}
	else {
		//alert(e[e.selectedIndex].value);
		window.location = e[e.selectedIndex].value;
		}
	}
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible";
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden";
}
