
// **** externi odkazy ****
// text
$(document).ready(function() {
    $('#main a:not(":has(img)")').filter(function() {
        return this.hostname && this.hostname !== location.hostname;
    })
    //.not(":has(img)")
    .addClass('external')
    .attr('target','_blank')
    .attr('title','Toto je externí odkaz');
});
// obrázek
$(document).ready(function() {
    $('#main a:has(img)').filter(function() {
        return this.hostname && this.hostname !== location.hostname;
    })
    .attr('target', '_blank')
    .attr('title', 'Toto je externí odkaz');
});


