// --- teach IE how to use CSS ---
// --- based on Suckerfish :hover
// --- http://www.htmldog.com/articles/suckerfish/hover/

var affectedIDs = new Array("navigationlist","nav_dropdown","leftnavcontainer");

sfHover = function() {
	for(var IDs=0;IDs<affectedIDs.length;IDs++) {
		if(document.getElementById(affectedIDs[IDs])) {
			var sfEls = document.getElementById(affectedIDs[IDs]).getElementsByTagName("LI");
			for (var i=0; i<sfEls.length; i++) {sfEls[i].onmouseover=function() {this.className+=" sfhover";}
				sfEls[i].onmouseout=function() {this.className=this.className.replace(new RegExp(" sfhover\\b"), "");}
			}		
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", sfHover);

// --- end CSS teaching ---