//blur link after click   
$(document).ready(function() {
  $('a.fun').click(function() {
    this.blur();
    return false;
  });
});
