

// externí odkazy
$(document).ready(function(){
  $('a.linkExternal').click(function(){
    window.open(this.href);
    return false;
  });
});

// externí odkazy img
$(document).ready(function(){
  $('a.linkExternalImg').click(function(){
    window.open(this.href);
    return false;
  });
});






























