startList = function() {
	if (document.all&&document.getElementById) {
		if (document.getElementById("homenav") != null) {
		    homenavRoot = document.getElementById("homenav");
		    for (i=0; i<homenavRoot.childNodes.length; i++) {
			    node = homenavRoot.childNodes[i];
			    if (node.nodeName=="LI") {
				    node.onmouseover=function() {
					    this.className+=" over";
				    }
				    node.onmouseout=function() {
					    this.className=this.className.replace(" over", "");
				    }
			    }
		    }
		}
		if (document.getElementById("nav") != null) {
		    navRoot = document.getElementById("nav");
		    for (i=0; i<navRoot.childNodes.length; i++) {
			    node = navRoot.childNodes[i];
			    if (node.nodeName=="LI") {
				    node.onmouseover=function() {
					    this.className+=" over";
				    }
				    node.onmouseout=function() {
					    this.className=this.className.replace(" over", "");
				    }
			    }
		    }
		}
	}
}
window.onload=startList;

function mailpage()
{
mail_str = "mailto:?subject=Check out the " + document.title;
mail_str += "&body=I thought you might be interested in the " + document.title;
mail_str += ". You can view it at, " + location.href;
location.href = mail_str;
}

