// no FF blur on menu links

window.onload = function() {
	blurAnchors();
}

function blurAnchors() {
	if(document.getElementsByTagName) {
	var a = document.getElementById('header').childNodes;
		for(var i = 0; i < a.length; i++) {
			a[i].onfocus = function() { this.blur(); };
		}
	}
}
