a1Hover = function() {
 if (document.getElementById("actionslinkList")!=null)
    {
	var menuels = document.getElementById("actionslinkList").getElementsByTagName("LI");
	for (var i=0; i<menuels.length; i++) {
		menuels[i].onmouseover=function() {
			this.className+=" over";
		}
		menuels[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
	}
}
if (window.attachEvent) window.attachEvent("onload", a1Hover);


a2Hover = function() {
 if (document.getElementById("actionslinkList1")!=null)
    {
	var menuels = document.getElementById("actionslinkList1").getElementsByTagName("LI");
	for (var i=0; i<menuels.length; i++) {
		menuels[i].onmouseover=function() {
			this.className+=" over";
		}
		menuels[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
	}
}
if (window.attachEvent) window.attachEvent("onload", a2Hover);

a3Hover = function() {
    if (document.getElementById("actionslinkList2")!=null)
    {
	var menuels = document.getElementById("actionslinkList2").getElementsByTagName("LI");
	for (var i=0; i<menuels.length; i++) {
		menuels[i].onmouseover=function() {
			this.className+=" over";
		}
		menuels[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
	}
}
if (window.attachEvent) window.attachEvent("onload", a3Hover);


a4Hover = function() {
    if (document.getElementById("actionslinkList3")!=null)
    {
	var menuels = document.getElementById("actionslinkList3").getElementsByTagName("LI");
	for (var i=0; i<menuels.length; i++) {
		menuels[i].onmouseover=function() {
			this.className+=" over";
		}
		menuels[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
	}
}
if (window.attachEvent) window.attachEvent("onload", a4Hover);
