// JavaScript Document
function unblur() {
this.blur();
}

function blurlinks() {
	if (!document.getElementById) return;
	thelinks = document.getElementsByTagName("a");
	for(i=0; i<thelinks.length; i++) {
		thelinks[i].onfocus = unblur;
	}
}