// JavaScript Document for BCM Public Template
// startList script taken from A List Apart (http://www.alistapart.com/articles/horizdropdowns/)
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("columnnav");
		for(j=0; j<navRoot.childNodes.length; j++){
			currentNode = navRoot.childNodes[j];
			if(currentNode.nodeName.toLowerCase()=="ul"){
				for (i=0; i<currentNode.childNodes.length; i++) {
					node = currentNode.childNodes[i];
					if (node.nodeName.toLowerCase()=="li") {
						node.onmouseover=function() {
							this.className+=" over";
						}
						node.onmouseout=function() {
							this.className=this.className.replace (" over", "");
						}
					}
				}
			}
		}
	}
}
window.onload=startList;
/* This script and many more are available free online at The JavaScript Source!! http://javascript.internet.com 
Original: William Rozell Jr (elranzer@nospam.com ) http://www.elranzer.com */
var user;
var domain;
var suffix;
function jemail(user, domain, suffix){
	document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + user + '@' + domain + '.' + suffix + '</a>');
}

