

// externí odkazy
jQuery().ready(function(){
  $('a.externalLink').click(function(){
    window.open(this.href);
    return false;
  });
});
































