<!--//--><![CDATA[//><!!--
	ieHoverDL = function() {
		var DLs = document.getElementsByTagName("DL");
			for (var i=0; i<DLs.length; i++) {
				DLs[i].onmouseover=function() {
					this.className+=" iehover";
				}
				DLs[i].onmouseout=function() {
					this.className=this.className.replace
						(new RegExp(" iehover\\b"), "");
					}
			}
	}
	if (window.attachEvent) window.attachEvent("onload", ieHoverDL);
//--><!]]>