function show(object,e) {
	if (e != '') {
		if (document.getElementById) {
			x = e.clientX;
			y = e.clientY;
		}
		if (document.layers) {
			x = e.pageX;
			y = e.pageY;
		}
	}

	if (document.layers && document.layers[object] != null) {
		document.layers[object].left = x;
		document.layers[object].top = y;
	}
	else if (document.getElementById) {
		document.getElementById(object).style.posLeft = x;
		document.getElementById(object).style.posTop = y;
	}

	if (document.layers && document.layers[object] != null)
		document.layers[object].visibility = 'visible';
	else if (document.getElementById)
		document.getElementById(object).style.visibility = 'visible';
}

function hide(object) {
	if (document.layers && document.layers[object] != null)
		document.layers[object].visibility = 'hidden';
	else if (document.getElementById)
		document.getElementById(object).style.visibility = 'hidden';
}

function openWin(img,wSize,pageHeader) {
  if (wSize == 1) {
	winId = window.open('','bigImage','width=680,height=510'); }
  if (wSize == 2) {
	winId = window.open('','newwin','width=510,height=680'); }					
  winId.document.write('<body onLoad="if (window.focus) window.focus()" bgcolor="#E6DDCA"><center>');
  winId.document.write('<img src="' + img + '"><br>');
  winId.document.write('<font size="4" face="arial">'+ pageHeader +'</font><br>');				  
  winId.document.write('<br><a href="javascript:window.close()" style="color: #3d2712;">Close This Window</a></center>');
  winId.document.write('</body>');
  winId.document.close();
}

startList = function() {
if (document.all&&document.getElementById) {
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;