function DESemail(emailname,emailserver) {
	document.write("<a href='mailto:" + emailname + "@" + emailserver +"'>");
	document.write(emailname + "@" + emailserver); 
	document.write("</a>"); 
}
function DESgoto(target) {
	if (target != "") {
	  this.location.href = target;
	}
}
// Accessible Pop Ups
function DESopen(url,width,height,toolbar,scroll) {
	window.open(url, "", "scrollbars="+scroll+",toolbar="+toolbar+",height="+ height +",width="+width);
	return false;
}
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
			//var selectC = document.getElementById("city");
			//selectC.style.visibility = 'hidden';
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			//var selectC = document.getElementById("city");
			//selectC.style.visibility = 'visible';
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);



$(document).ready(function(){

	if (document.getElementById("interact")) {
		$("#interact input").click( function() {
			$("#interact").attr("action","/directory/submit/");
		});
		
	}

}); // End jQuery
	
