window.onload = thisblur;
function thisblur (){
	var tgt = function (){ this.blur() };
	for (var i = 0; i < document.links.length; i++) {
		document.links[i].onfocus = tgt;
	}
}

