- Add a on click event to the links to blur them.
$('#nav a').click(function(){$(this).blur(); });
- Add outline none to CSS
#nav a { outline:none; }
- Profit
Note: Adding CSS "outline:none;" to links will make it impossible for keyboard only users to navigate the site, be sure to offer an alternative.