

<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;


/*
function noRightClick() {
if (event.button==2) {
alert('Copyright 2004-2007 ACS Engraving Limited. No use without permission.')
}
if (event.which==2) {
alert('Copyright 2004-2007 ACS Engraving Limited. No use without permission.')
}
}
document.onmousedown=noRightClick
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
*/
// -->

IEMhover = function() {
	var IEMh = document.getElementById("menunav").getElementsByTagName("LI");
	for (var i=0; i<IEMh.length; i++) {
		IEMh[i].onmouseover=function() {
			this.className+=" IEMhover";
		}
		IEMh[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" IEMhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", IEMhover);