

function result_list_fx(){
	var tl = document.getElementsByTagName('table');
	for(var i = 0; i < tl.length; i++){
		var t = tl.item(i);
		if(t.className == 'list'){
			var rl = t.rows;
			for(var j = 1; j < rl.length; j++){
				r = rl.item(j);
				if(r.getElementsByTagName('a').length == 1){
					r.style.cursor = 'pointer';
					r.onclick = function(){ self.location.href = this.getElementsByTagName('a').item(0).href; }
					}
				r.onmouseover = function(){ this.className = 'light'; } 
				r.onmouseout = function(newClass) { return function() { this.className = newClass; } } (r.className);
				}
			}
		}
	}

window.onload = function () {result_list_fx(); };