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