// startList script taken from A List Apart (http://www.alistapart.com/articles/horizdropdowns/)
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navigation");
		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>');
}

function ShowPop(id)
{
   document.getElementById(id).style.visibility = "visible";
}
function HidePop(id)
{
   document.getElementById(id).style.visibility = "hidden";
}


function printPage(){	
var a = window.open('','','width=650,height=650,scrollbars=1,resizable=1,');
a.document.open("text/html");
a.document.write('<link href="style/_global.css" rel="stylesheet" type="text/css">');
a.document.write('<link href="style/custom.css" rel="stylesheet" type="text/css">');
a.document.write('<link href="style/calendar.css" rel="stylesheet" type="text/css">');
a.document.write('<link href="style/print.css" rel="stylesheet" type="text/css">');
a.document.write(document.getElementById('printThis').innerHTML);
a.document.close();
a.print();
} 


