<!--
// common website functions
var gallerypop;

function openWin(url) {
	gallerypop = window.open(url,'Map','left=100,top=100,screenX=30,screenY=30,width=440,height=525,menubar=no,scrollbars=yes,resizable=yes');

	if (window.focus) {gallerypop.focus()}
}

// Create Drop Down Menu
var navHover;
navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("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);

//-->