$(document).ready(function(){

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

})