$(document).ready(function(){
  $("a:not([@href^=http://www.autokubanek.cz])").not("[href^=#]").not("[href^=mailto:]")
  .addClass("out-link")
  .attr({
    title:"Odkaz do nového okna"
  })
  .attr({ 
    target: "_blank"
  });
});

