
$(document).ready(function() {
 
//EXTERNES FENSTER ÖFFNEN 
$("a[rel='external']").click(function(event){
            window.open($(this).attr("href"));
            event.preventDefault();
        });
 //LIGHTBOX
 $('a[rel*=lightbox]').lightBox();
 
        
});











