$(document).ready(function() {
  // for any 'a' element with class="fun",
  // take focus off of the link when it's clicked
     $('a').focus(function() {
       this.blur();
        // do something else here
        // then stop the click from executing the default action
       return true;
     });
});

