// JavaScript Document

startov = function () {
	if (document.all&&document.getElementById) {
		qRoot = document.getElementById("QRow");
		for ( i = 0; i < qRoot.childNodes.length; i++) {
			node = qRoot.childNodes[i];
	        if (node.nodeName == "TD" && node.id != "spacer" ) {
				node.onmouseover = function() {
				this.className+=" over";
				}
				node.onmouseout=function() {
				this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

window.onload=startov;