<!-- hide script from old browsers

topicList = function() {
	var ObjTopic = document.getElementById("topics");
	if (ObjTopic) {
		var topicLI = ObjTopic.getElementsByTagName("LI");
		for (var i=0; i < topicLI.length; i++) {
			topicLI[i].onmouseover = function() {
				this.className += " over";
			}
			topicLI[i].onmouseout = function() {
				this.className = this.className.replace(new RegExp(" over\\b"), "");
			}
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", topicList);

// end hiding script from old browsers -->


