// -*- coding: utf-8 -*-

/**
 * blurs all links when page is loaded
 * this avoids links left with focus when the back button of the web browser is pressed
 * 
 * source : http://perishablepress.com/press/2008/12/16/unobtrusive-javascript-remove-link-focus-dotted-border-outlines/
 */

if (document.all)
{
	for (var i in document.links)
	{
		document.links[i].onfocus = document.links[i].blur ;
	}
}

