$(function(){
/***************************/
// blur focus of every link clicked to avoid focus box uglies
$('a').focus(function() {
	this.blur();
});
/***************************/
});

