$(document).ready(function(){

	// Remove focus outline on all links when clicked
	$("a").focus(function(){
	  $(this).blur();
	});
 });

