startList = function() { 
	if (document.all && document.getElementById) { 
		if(document.getElementById("gewinner-infos-big")){
			listRoot = document.getElementById("gewinner-infos-big");
			for (i=0; i<listRoot.firstChild.childNodes.length; i++) {
				node = listRoot.firstChild.childNodes[i]; 
				if (node.nodeName=="TR") { 
					node.onmouseover=function() { 
						if(this.firstChild.nextSibling.hasChildNodes()){
							if(this.firstChild.nextSibling.firstChild.nodeName=="A"){
								this.className+=" over";
							}
						}
					} 
					node.onmouseout=function() { 
						this.className=this.className.replace (" over", ""); 
					} 
				} 
			} 
		}
	} 
	else{
		if(document.getElementById("gewinner-infos-big")){
			listRoot = document.getElementById("gewinner-infos-big");
			trNode1 = listRoot.childNodes[1].childNodes[0];
			for (i=0; listRoot.childNodes[1].childNodes.length; i++){
				if (listRoot.childNodes[1].childNodes[i].nodeName == "TR"){
					node = listRoot.childNodes[1].childNodes[i];
					node.onmouseover=function() {
						if(this.getElementsByTagName("A").length){
							this.className+=" over";
						}
					}
					node.onmouseout=function() { 
						this.className=this.className.replace (" over", ""); 
					} 
				}
			}
			
		}
	}
} 
window.onload=startList;
