// unblur.js - remove the box around links - 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;
	}
}


