iconHover = function() {
	var list1 = document.getElementById("radio-spots1").getElementsByTagName("LI");
	//var list2 = document.getElementById("radio-spots2").getElementsByTagName("LI");

	for (var i=0; i<list1.length; i++) {
		list1[i].onmouseover=function() {
			this.className+=" iconHover";
		}
		list1[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iconHover\\b"), "");
		}
	}

/*
	for (var i=0; i<list2.length; i++) {
		list2[i].onmouseover=function() {
			this.className+=" iconHover";
		}
		list2[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iconHover\\b"), "");
		}
	}
*/
}

if (window.attachEvent) window.attachEvent("onload", iconHover);