
$(document).ready(function() {

 $('a[href^="http://"]')
  .attr({
    target: "_blank",
    title: "Odkaz do nového okna"
   });
 

  // OPEN EXTERNAL LINK
  $(".external").filter(function() {
    return this.hostname && this.hostname !== location.hostname;
  })
  .click(function() {
    window.open(this.href);
    return false;
  });
	
});

