function loadPage() {
	
	// set an blur effect for all links on the püage
	if (!document.getElementsByTagName){ return; }
	var anchors = document.getElementsByTagName("a");

	// loop through all anchor tags
	for (var i=0; i<anchors.length; i++)
		anchors[i].setAttribute("onfocus", "this.blur();");
}