$(document).ready(function() {
    // Symbol für externer Link
    var extAnchor = $("a[href^='http'], a[href^='https']").not("a:has(img) , #lbCenter a, #lbBottomContainer a, a[href*='www.stadt-meissen.de'], a[href*='stadt-meissen.xima-web.de'] a[href*='www.touristinfo-meissen.de'],");
    var extDownload = $("div.download a");
    
    
    var anchors = $.merge(extAnchor, extDownload);
    anchors = jQuery.unique(anchors);
    $(anchors).attr("title","Link öffnet in neuem Fenster");
    $(anchors).click(function() {
        window.open(this.href);
        return false;
    });
    
});
