menuHover = function() {
	var oMenu = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0;i<oMenu.length;i++) {
		oMenu[i].onmouseover=function() {
			this.className += " menuHover";
		}
		oMenu[i].onmouseout=function() {
	     this.className = this.className.replace(new RegExp(" menuHover\\b"), "");
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", menuHover);

function showPicture(cURL, nWidth, nHeight) {
  oReturn = window.open(cURL,'picture','toolbar=no, location=no,scrollbars=no, status=no, width='+ (nWidth + 20) +', height='+ (nHeight + 20))
  oReturn.resizeTo(nWidth + 30, nHeight + 60);
  oReturn.focus();

  return oReturn;
}
