startList = function() {
	var node = null;
	var navRoot = null;
	if (navigator.userAgent.indexOf('MSIE')>=0) {
		navRoot = document.getElementById("side-nav");
		if (typeof navRoot != 'undefined') {
			for (i=0; i<navRoot.childNodes.length; i++) {
				if (navRoot.childNodes[i].nodeName=='UL') {
					for (x=0; x<navRoot.childNodes[i].childNodes.length; x++) {
						node = navRoot.childNodes[i].childNodes[x];
						if (node.nodeName=="LI") {
							node.onmouseover=function() {
								this.className += "-over";
		  					}
		  					node.onmouseout=function() {
		  						this.className=this.className.replace("-over", "");
		   					}
		   				}
					}
				}
  			}
 		}
		navRoot = document.getElementById("all-series");
		if (typeof navRoot != 'undefined' && navRoot != null) {
			navRoot.onmouseover=function() {
				this.className += "-over";
			}
			navRoot.onmouseout=function() {
				this.className=this.className.replace("-over", "");
			}
 		}
	}
}
window.onload=startList;