// JavaScript Document


ebaHover = function() {
	var ebaEls = document.getElementById("eba09-nav").getElementsByTagName("LI");
	for (var i=0; i<ebaEls.length; i++) {
		ebaEls[i].onmouseover=function() {
			this.className+=" ebahover";
		}
		ebaEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" ebahover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", ebaHover);

