//scripts.js

function mailme(user,text){
var sb_domain = "chesterbaptistchurch.org"
var sb_recipient = user + "@" + sb_domain
var sb_url = "mailto:" + sb_recipient
document.write(text.link(sb_url));
};

//example usage
//mailme('ntdunn','contact me');
//

// Drop-down menu

navHover = function() {
	var lis = document.getElementById("navmenu").getElementByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className+=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent ("onload", navHover);
 // end of Drop-down menu
