
IEMhover2 = function()
{
	var IEMh = document.getElementById("sidebarmenu").getElementsByTagName("LI");
	for (var i=0; i<IEMh.length; i++) {
		IEMh[i].onmouseover=function() {
			this.className+=" IEMhover2";
		}
		IEMh[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" IEMhover2\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", IEMhover2);